generated from KU-BIG/project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Anaconda 사용하기
Ye Eun Song edited this page Jul 19, 2020
·
1 revision
- 계정 directory로 이동
$ cd /home/[First name].[Last Name].conda
- 패키지 설치
$ conda install jupyterlab
$ conda install tensorflow
$ conda install scikit-learn
별도 버전 명시 없이 tensorflow를 설치할 경우 2.1버전이 깔립니다. 2.1버전에서는 from tensorflow import keras를 이용해 keras를 사용하실 수 있습니다.
- jupyter lab 연결
$ jupyter lab --ip=0.0.0.0 --port=[포트포워딩한 포트] --NotebookApp.token='' --allow-root
위와 같은 화면이 뜨면 브라우저 창에다가 localhost:[포트포워딩한 포트]를 입력해주시면 됩니다. 가능하면 internet explorer보다는 chrome에서 진행하시길 추천드립니다.