본문 바로가기
데이터 분석/Python, R 문법

윈도우에서 아나콘다 가상환경 설정

by 장찐 2021. 10. 25.

📚 Anaconda 가상환경 설정 

 

✅ 가상환경 생성 

• 아나콘다 PowerShell 실행 (윈도우 커맨드도 같음)

 Python, Spyder 버전 설정 후 생성

$conda create -n 이름 python=3.8 spyder=4 


✅ 가상환경 실행

현재 가상환경 목록 확인 

$ conda env list  

 

• 가상환경 실행 

$ conda activate 이름

 

 스파이더 실행

$ spyder

 


  비활성화 

 주피터/스파이더 종료 :

Ctrl + C 두번 누르기

 

 현재 가상환경 비활성화 :

$deactivate

 

 다른 가상환경 비활성화 :

$deactivate 가상환경 이름

 


  Tensorflow 설치

 Tensorflow 설치

$ conda update -n base conda

$ conda update --all

 

$ conda install tensorflow

$ conda install keras

 

* 참고

https://chancoding.tistory.com/85

https://m.blog.naver.com/flykimjiwun/221877682210

https://velog.io/@nayeon_p00/tensorflow-%EC%95%84%EB%82%98%EC%BD%98%EB%8B%A4%EC%97%90-%ED%85%90%EC%84%9C%ED%94%8C%EB%A1%9C%EC%9A%B0-%EC%84%A4%EC%B9%98%ED%95%98%EA%B8%B0

https://ai-coding.tistory.com/3

 


테마 설치 

$ pip install jupyterthemes (conda 안먹힘)

 

-테마 목록 출력

$ jt -l

 

-테마  폰트 적용

$ jt -t 테마명 -f 폰트명 -fs 12 -tf 폰트명 -tfs 13  -ofs 12 -dfs 12 -cellw 95%  -T -N

 

* 참고 : 

https://bio-info.tistory.com/15

https://chancoding.tistory.com/8

https://blog.naver.com/PostView.nhn?blogId=msamhh&logNo=221566104499

 

* nbextension 관련 참고

https://john-analyst.medium.com/%EC%A3%BC%ED%94%BC%ED%84%B0-%EB%85%B8%ED%8A%B8%EB%B6%81%EC%9D%98-%EA%BF%80%ED%8C%81%EB%93%A4-4a40d406f07e

 

-초기화

$ jt -r

 

  화면 너비 조정 

from IPython.core.display import display, HTML
display(HTML("<style>.container { width:95% !important; }</style>"))

 

댓글