Thursday, January 4, 2018

Ubuntu Jupyter installation number 2

Install Anaconda
https://www.anaconda.com/download/#linux

Install Conda
http://jupyter.readthedocs.io/en/latest/install.html#

cd to the directory containing the environment file and the notebook (ipynb file extension)

Create the conda environement
https://conda.io/docs/user-guide/tasks/manage-environments.html#creating-an-environment-from-an-environment-yml-file

$ conda env create -f environment.yml


jupyter notbook

A GUI pops up select the ipynb file.

Trouble shooting
https://stackoverflow.com/questions/42648610/error-when-executing-jupyter-notebook-no-such-file-or-directory

http://jupyter.readthedocs.io/en/latest/install.html#

Solving environment: failed

ResolvePackageNotFound:
  - python==3.5

Solution:

python -V

install the python version 3.x shown by the above command

No comments:

Post a Comment