0% found this document useful (0 votes)
22 views1 page

Install and Use Conda for Jupyter

Uploaded by

Spencer Xu
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22 views1 page

Install and Use Conda for Jupyter

Uploaded by

Spencer Xu
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

Follow the instructions for your OS to install the Python package manager conda:

[Link]

Open a terminal in this directory.

Create a new environment named lecturecv and install required packages (numpy,
etc.) via running:
conda env create -f [Link]

Note: A typical source of error is to use an old version of conda itself. You can
update it via:
conda update -n base conda -c anaconda

Before launching your notebook you need to activate the environment:


conda activate lecturecv

Depending on your configuration, you might instead need to run:


source activate lecturecv

You can now start jupyter notebook from the directory:


jupyter-notebook

A browser window should be opened in which you can open the notebook of the first
exercise called image_formation.ipynb

You might also like