Respostas:
Abra o terminal e digite:
sudo apt install python3-notebook jupyter jupyter-core python-ipykernel
Para iniciar o servidor notebook, execute o seguinte comando:
jupyter notebook
Você deve ver o Jupyter Notebook aberto no seu navegador.
Ubuntu 17.04 e 17.10
No Ubuntu 17.04 e posterior, o Jupyter Notebook está disponível nos repositórios padrão do Ubuntu e pode ser instalado de forma rápida e fácil usando o apt. Abra o terminal e digite:
sudo apt install jupyter-notebook jupyter-core python-ipykernel
O python-ipykernel é necessário para a execução de programas Python 2.x no Jupyter Notebook, que de outra forma suporta apenas o Python 3.x.
Para iniciar o servidor notebook, execute o seguinte comando:
jupyter notebook
Você verá o Jupyter Notebook aberto no seu navegador
Ubuntu 16.04 e versões anteriores
O Google Colaboratory é o ambiente de notebook Jupyter gratuito do Google que não requer configuração e é executado inteiramente na nuvem.
jupyter-troubleshootajudará você a solucionar esse problema.
apt-get install jupyter-notebook, conforme sugerido aqui: stackoverflow.com/questions/42648610/…
Eu instalei usando
pip install jupyter
( pip3 se o Python3 estiver instalado; verifique também se você tem acesso root, ou seja, logado no terminal como root @ ... )
e para dependências python
apt-get install build-essential python3-dev
Na área de trabalho do ubuntu 14.04.3 LTS. Estou em python3.
pip install --user pkg_name.
Não parece ser possível usando apenas o apt-get.
apt-file find jupyter ## returns no results
Para 16.04:
sudo apt-get install python-pip
pip install --upgrade pip ## secret sauce -- pip fails otherwise
sudo pip install jupyter
então
jupyter notebook
Substitua 'pip' por 'pip3' para usar no Python3.
Com base na recomendação oficial aqui , devemos usar:
python -m pip install jupyter
python3 -m pip install jupyter
Após este comando e todas as anteriores, tive um problema com o erro de permissão. Para resolvê-lo, devemos usar o próximo comando:
python -m pip install jupyter --user
python3 -m pip install jupyter --user
sudo -H pip3 install jupyter(com pip3, não pip) funcionou para mim depois de várias outras abordagens. Eu fiz isso no ubuntu linux com python 3.5.3 embutido no lavano chromebook c330. Spyder também instalado e vários comandos favoritos como "localizar".
$jupyter notebookErro ao executar o comando Jupyter 'notebook': [Errno 2] Nenhum arquivo ou diretório existe