Python 환경의 패키지/가상 환경 export, import 하는 방법
1. pip 패키지 설치 내용 export/import pip freeze > requirements.txt pip install -r requirements.txt 2. conda 패키지 설치 내용 export/import GUI 기반 env.yml 파일 준비 name: deep-tf2 dependencies: - python=3.7 - numpy - scikit-learn - pandas - matplotlib - jupyter - cython - nltk - flask - wtforms - seaborn - pydot - imageio - pydotplus - pip: - tensorflow==2.0.0-rc1 - watermark - pyprind Anaconda navigator를 키고 좌측에..
2021.09.23