Python 가상환경 구축 및 이해 - anaconda, conda env
2019. 3. 17. 13:49ㆍDevelopment/Hacking With Python
anaconda 설치는 이전포스팅 참고
https://whackur.tistory.com/138
pip 업그레이드
python -m pip install --upgrade pip
텐서플로우 설치 예시
환경 이름 설정과 파이썬 버전 지정
conda create -n tensorflow python=3.6
윈도우 가상환경 활성화
activate tensorflow
리눅스 가상환경 활성화
source activate tensorflow
활성화된 가상환경에서 설치하기
conda install numpy
conda install pandas
conda install tensorflow
환경별 가상환경 출력
conda env list
가상환경 삭제
conda env remote -n tensorflow
'Development > Hacking With Python' 카테고리의 다른 글
[파이썬 업무자동화] 02.Selenium_네이버 로그인 후 메일보내기 (0) | 2019.06.18 |
---|---|
[파이썬 업무자동화] 01.Selenium_네이버 로그인 후 메일함 읽기 (캡챠 우회 가능) (0) | 2019.06.18 |
우분투 conda 설치, conda list 명령어로 패키지가 보이지 않을 때 (0) | 2019.04.29 |
Python 가상환경 구축 및 이해 - venv, virtualenv (0) | 2019.03.17 |
파이썬3.7 설치 및 VSCode 구축 (0) | 2019.01.21 |