* pip list 저장하기(export 하기)
pip freeze > requirements.txt
* pip list 불러오기(Import 하기, 새로운 가상환경에서 다시 install 하기)
pip install -r requirements.txt
* conda list 저장하기(export 하기)
conda list --export > packagelist.txt
* conda list 불러오기(Import 하기, 새로운 가상환경에서 다시 install 하기)
conda install --file packagelist.txt
출처: https://stackoverflow.com/questions/41979133/import-conda-package-list-to-default-env
https://pip.pypa.io/en/stable/reference/pip_freeze/
'Coding > 기타' 카테고리의 다른 글
linux shell - 디렉토리/파일 개수 세기 (0) | 2020.01.14 |
---|---|
코드 작성 방식: snake, pascal, camel, hungarian (0) | 2020.01.13 |
Stack Overflow란? (1) | 2019.12.26 |
Jupyter notebook - remote server 연결 (0) | 2019.11.11 |
Kill Nvidia GPU process in Ubuntu (0) | 2019.11.07 |