Как установить jupyter на виртуальную машину Google Cloud? - PullRequest
0 голосов
/ 15 апреля 2020

Я хотел бы установить jupyter на виртуальную машину Google Gloud VM

Я следую этому руководству

wget https://repo.continuum.io/archive/Anaconda3-4.2.0-Linux-x86_64.shwget https://repo.continuum.io/archive/Anaconda3-4.2.0-Linux-x86_64.sh
bash Anaconda3-4.2.0-Linux-x86_64.sh 

ls
Anaconda3-4.2.0-Linux-x86_64.sh  anaconda3  get-pip.py

Тогда я делаю

export PATH=/home/myname/anaconda3/bin:$PATH

Тогда я получаю ошибку

jupyter notebook
-bash: jupyter: command not found

1 Ответ

0 голосов
/ 15 апреля 2020

Вот так я установил jupyter на Google Cloud VM

sudo apt install python3-pip
sudo pip3 install notebook
jupyter --version


jupyter core     : 4.6.3
jupyter-notebook : 6.0.3
qtconsole        : not installed
ipython          : 7.9.0
ipykernel        : 5.2.1
jupyter client   : 6.1.3
jupyter lab      : not installed
nbconvert        : 5.6.1
ipywidgets       : not installed
nbformat         : 5.0.5
traitlets        : 4.3.3



Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...