Skip to content

Latest commit

 

History

History
28 lines (26 loc) · 813 Bytes

README.md

File metadata and controls

28 lines (26 loc) · 813 Bytes

Jupyter project template

In order to begin a jupyter project do following steps:

  1. Clone the repository:

    git clone [email protected]:FForzano/jupyter_project.git

    or

    git clone https://github.com/FForzano/jupyter_project.git
  2. Change project name and origin repository

  3. Go into the project directory

    cd jupyter_project
  4. Create the virtual environment, activate it and install required packages

    python3 -m venv .venv
    source .venv/bin/activate
    pip install -r requirements.txt
  5. 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.

  6. Start coding