jupyter 사용하기
사용법 - 2가 나음 2를 쓸것을 추천…
# 현재 jupyter가 설치되어 있지 않다면
$ pip install jupyter
사용법 - 1
.ipynb
(jupyter 파일)이 있는 폴더에서
$ jupyter notebook
http://localhost:8888
접속
사용법 - 2
- Viual Studio Code를 활용
$ python -m venv venv
를 통해 가상환경 생성$ .\venv\Scripts\activate
가상환경 활성화(venv) $ pip install -r ./requirements.txt
requirements.txt 설치- Visual Studio Code를 통해
.ipynb
편집- PyCharm Community는
.ipynb
편집을 지원하지 않음.
- PyCharm Community는
# 아래명령을 통해서 실행도 상관은 없음.
$ jupyter notebook