본문 바로가기
컴퓨터쟁이/Python

ubuntu14.04 python anaconda 설치

by 빙글빙글이 2018. 6. 19.
728x90
반응형

1. python 설치 


 http://jupyter.readthedocs.io/en/latest/install.html 참고


#python --version (버전확인)


2. anaconda를 설치한다

 

 https://docs.anaconda.com/anaconda/install/linux 참고 


혹시 enter를 한번 더 눌렀다면 

7. The installer prompts “Do you wish the installer to prepend the Anaconda<2 or 3> install location to PATH in your /home/<user>/.bashrc ?” Enter Yes.

NOTE: If you enter “No”, you must manually add the path to Anaconda or conda will not work. See FAQ.


이 부분을 건너 뛰었을 것이다. NOTE를 참고하면 알 수 있지만, (FAQ 링크참고)

.bashrc에 들어가서 맨 밑에

exportPATH="/<pathtoanaconda>/bin:$PATH"

      위 부분을 추가해주시고 

#source ~/.bashrc를 해주시면 됩니다. 


제대로 설치 됬는지 확인 하기!


#conda --version (콘다 버전확인)

#conda update conda (콘다 업데이트)


http://niceman.tistory.com/85 참고 


3. anaconda 가상환경 설치 

http://egloos.zum.com/mataeoh/v/7096538 참고 


#conda info --envs (가상환경 리스트목록 불러오기)


#source activate (가상환경이름)

linux는 source를 붙이고, window는 안붙입니다.


4. jupyter notebook 설치


# conda install jupyter notebook


      **복붙하지 마시고 타이핑 하세여! 블로그 링크가 같이 복사되어서 쓰기 힘듭니다.

5. numpy , pandas 설치


#conda install numpy


#conda install pandas 

     **복붙하지 마시고 타이핑 하세여! 블로그 링크가 같이 복사되어서 쓰기 힘듭니다.

6.jupyther notebook 설정바꾸기 (접속시 창 안뜨게, 그리고 고정아이피- 접속할 서버, 내가 원하는 포트)


#jupyter notebook --no-browser --ip= (ip주소)  --port= (port번호)





 

728x90
반응형