📚 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://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 관련 참고
-초기화
$ jt -r
• 화면 너비 조정
from IPython.core.display import display, HTML
display(HTML("<style>.container { width:95% !important; }</style>"))
'데이터 분석 > Python, R 문법' 카테고리의 다른 글
Python - 리스트, 딕셔너리, 세트 (0) | 2021.11.20 |
---|---|
[Python] 주피터 노트북 셀 여백 조정 (0) | 2021.11.12 |
Colab ↔ 구글 드라이브 연결 방법 (0) | 2021.10.25 |
unicodeescape 에러 해결 (0) | 2021.10.11 |
딕셔너리, 세트 정리 (0) | 2021.09.25 |
댓글