다운로드, 설치
$ wget https://repo.continuum.io/archive/Anaconda3-5.0.1-Linux-x86_64.sh $ bash Anaconda3-5.0.1-Linux-x86_64.sh
기본설정 enter enter..
$ python -V $ conda -V $ conda -h $ conda upgrade anaconda
$ conda env list $ conda search python $ conda create -n hoon python=3.6 $ source activate hoon $ conda list $ source deactivate $ conda remove -n hoon --all
$ conda create -n py362 python=3.6.2 $ source activate py362 $ conda list $ conda install numpy pandas $ conda list $ jupyter notebook
_______________________
설정 파일 생성
$ jupyter notebook --generate-config
config 파일 수정
# Set ip to ‘*’ to bind on all interfaces (ips) for the public server
c.NotebookApp.ip = ‘*’
c.NotebookApp.open_browser = False
# It is a good idea to set a known, fixed port for server access
c.NotebookApp.port = 8888
$ nohup jupyter notebook > /home/hoon/notebook.log & ps -ef|grep jupyter kill ????
_______________________
https://jupyter-notebook.readthedocs.io/en/stable/public_server.html
더 해보기
– 토큰 입력 대신 password 입력으로 설정 변경
– https 사용하기
– pem key 사용해서 접속하기
– jupyter hub, jupyter lab
– docker로 anaconda 사용하기