Installing Jupyter Notebook on Bash in Windows

1. update "apt-get
$ sudo apt-get update
 
2. Install Python
$ sudo apt-get install python-pip python-dev
 
3. Install Jupyter
$ sudo pip install jupyter
 
# Ubuntu/Linux 64-bit
$ sudo apt-get install python-pip python-dev

 # Ubuntu/Linux 64-bit, CPU only, Python 2.7
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.10.0rc0-cp27-none-linux_x86_64.whl

# Python 2
$ sudo pip install --upgrade $TF_BINARY_URL
 

python2는 pip이고 python3은 pip3이다.

$ sudo pip install jupyter

 
 

댓글