Skip to content

Latest commit

 

History

History
31 lines (31 loc) · 552 Bytes

README.md

File metadata and controls

31 lines (31 loc) · 552 Bytes

For running this notebook, you need follow the steps below:

1. Create a virtual environment

1.1 For Linux and Mac

python3 -m venv venv

1.2 For Windows

python -m venv venv

2. Activate the virtual environment

2. For Linux and Mac

source venv/bin/activate

2.2 For Windows

venv\Scripts\activate

3. Install the requirements

pip install -r requirements.txt

4. Run the notebook

jupyter notebook

5. Deactivate the virtual environment

deactivate