Tensorflow Object Detection 학습용 서버에 설치했습니다.

https://greedywyatt.tistory.com/107?category=328775(설명 사이트)

 

[Ubuntu 18.04] Anaconda 설치 및 가상환경 구축

■ 참고문헌 ● https://enant.tistory.com/10 ● https://antilibrary.org/1746 ■ 본문 아나콘다 홈페이지에 들어가서 LInux 버전을 다운 받는다. 저는 Python 3.7 64-Bit(x86) Installer (654 MB) 를 다운받았..

greedywyatt.tistory.com

 

https://www.anaconda.com/distribution/#download-section(아나콘다 linux 버전 설치 사이트)

 

Anaconda Python/R Distribution - Free Download

Anaconda Distribution is the world's most popular Python data science platform. Download the free version to access over 1500 data science packages and manage libraries and dependencies with Conda.

www.anaconda.com

 

 

cd ~/Downloads

sha256sum <Anaconda3-2019.03-Linux-x86_64.sh>

<> 안은 설치 버전 맞춰서

이 결과에 문제가 없으면

bash <Anaconda3-2019.03-Linux-x86_64.sh>

터미널 창을 껐다가 다시 켠다.

source ~/.bashrc

잘 설치 되었는지 확인

conda --version

conda search python

conda create -n <py356> python=<3.5.6>

빨간부분 = 가상환경 이름, 그리고 뒤에는 쓸 파이썬 버전 입력

확인

conda info –envs

실행

conda activate <py356>

 

 

 

 

+ Recent posts