반응형

전체 글 301

네이버 주식 일별 시세 pandas read_html() ValueError: No tables found 오류

네이버 주식 일별 시세 pandas read_html() 오류 --------------------------------------------------------------------------------------------------- import pandas as pd # 네이버 금융 주식 일별시세(예, LG전자[066570]) url = "https://finance.naver.com/item/sise_day.nhn?code=066570" df = pd.read_html(url) --------------------------------------------------------------------------------------------------- => 오류 발생 : ValueError:..

개발/Python 2021.05.21

Google Colab (Colaboratory) python library module install, upgrade, uninstall

Google Colab (Colaboratory) python library install 1. Python module install/upgrade/uninstall 1-1. Module install !pip install (module name) ex, !pip install scikit-learn 1-2. Module upgrade !pip install --upgrade (module name) ex, !pip install --upgrade scikit-learn 1-3. Module uninstall !pip uninstall (module name) ex, !pip uninstall scikit-learn 2. Program install, upgrade, remove 2.1 Program..

개발/Python 2021.05.01

Ubuntu shutdown, reboot shortcut keys

1. shutdown shortcut key Alt + SysRq(PrtSc) + O 2. reboot shortcut key Alt + SysRq(PrtSc) + B 3. 키보드 단축키 설정 설정 > 키보드 바로 가기 > 사용자 설정 바로 가기 > + 클릭 이름 : 종료 명령 : gnome-session-quit --power-off 바로가기 : (단축키 설정) > 추가 클릭 참고 : askubuntu.com/questions/53263/shut-down-computer-from-keyboard Shut down computer from keyboard Is there a keyboard shortcut available to shutdown the computer? I know I can use th..

OS/Ubuntu 2021.04.27
반응형