반응형
1. 파이썬 설치
1) 윈도우
https://www.python.org/downloads/
원하는 버전 다운로드
[설치할때 Add Python to PATH 체크하는 사진]
기본 설치 시 기본 드라이브(C:) / Users / 사용자 / Appdata / Local / Programs / Python에 설치 된다.
2) 리눅스
# yum install python3 ( Redhat 계열 )
# apt-get install python3 ( Debian 계열 )
2. 주피터 노트북 설치
1) 윈도우
실행창 열기 ( 윈도우키 + r )
pip3 install jupyter
2) 리눅스
# yum install python-pip ( Redhat 계열 )
# apt-get install python-pip ( Debian 계열 )
# pip install --upgrade pip
# pip3 install jupyter
3. 주피터 노트북 실행
1)윈도우
명령 프롬프트 창에서
jupyter notebook 입력
2) jupyter notebook --ip=0.0.0.0 --port=8888 --allow-root
화면에 보이는 링크 인터넷 주소창에 복사 & 붙여넣기
'개발' 카테고리의 다른 글
[파이썬] 설치 및 오류해결 (0) | 2023.04.24 |
---|---|
파이썬(인스타 크롤링) (0) | 2021.03.26 |
[Python] print, 크롤링 기초 (0) | 2021.03.25 |
파이썬 & MariaDB 연동 (0) | 2020.11.20 |