-
1. pip을 가지고 다운되어있는 패키지 목록을 txt파일에 쓰기 pip freeze > requirements.txt [파일이름] 2. requirements.txt 목록에 있는 패키지들을 다운로드 하기 pip install -r requirements.txt 좀 더 편리하게 다운로드를 할 수 있는 방법이다.
pip install jupyter 오류 발생시..(내 컴퓨터 파이썬 버전3.xx) 오류 내용 : 2.xx python 오류 blah blah ~~~ 1. python3 -m pip install --upgrade pip2. python3 -m pip install jupyter 이렇게 하여 해결이 됬습니다.