In order to begin a jupyter project do following steps:
-
Clone the repository:
git clone [email protected]:FForzano/jupyter_project.git
or
git clone https://github.com/FForzano/jupyter_project.git
-
Change project name and origin repository
-
Go into the project directory
cd jupyter_project
-
Create the virtual environment, activate it and install required packages
python3 -m venv .venv source .venv/bin/activate pip install -r requirements.txt
-
If you are using zsh and you have zsh-autoenv installed, the virtual environment is activated and deactivated automatically when you go into the directory.
-
Start coding