Skip to content

Template for setting up a Jupyter notebook environment for a project.

Notifications You must be signed in to change notification settings

openavr/jupyter-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

Jupyter Notebook Project Setup Template

Jupyter Installation

Install python venv:

$ sudo apt install python3-venv

Create a virtual environment:

$ python3 -m venv $PWD/venv

Activate the virtual environment:

$ source venv/bin/activate

Install Jupyter:

$ pip install --upgrade pip
$ pip install -r requirements.txt

Start Jupyter:

$ jupyter notebook

or to avoid automatically loading Jupyter in a broswer:

$ jupyter notebook --no-browser

About

Template for setting up a Jupyter notebook environment for a project.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published