설치
Python 우분투에서 설치 하기 및 모듈 설치
우분투에서 파이썬 설치 및 기본 모듈 설치를 해보았습니다. Ctrl + Alt + T 를 눌러서 터미널 호출 1. python 설치 sudo apt-get install python sudo apt-get install python3 #파이썬3 2. pip설치 sudo apt-get install python-pip sudo apt-get install python3-pip #파이썬3 자주 사용하는 모듈 설치 3. beautifulsoup 설치 pip install bs4 4. requests 설치 pip install requests 5. selenium 설치 python -m pip install selenium