Homework repository for TAU DL 2021 students collaboration, including all code practical tasks, shared components and explained answers. This Repo is open and publicly shared.
- The following terminal commands are according to Mac operating system, check online for PC alternatives for each command.
- Please keep the project convension in terms of folder/ files management as follow
-- HW1 -- Q1 -- <your-name> -- <some_file>.py # holds your help functions -- main.py # holds your main code
- Install Python (>3.7)
- install
git
. - Clone this repo to your local machine.
- Install pip (depends on your operating system - check online).
- Install venv using pip (In order to be able to run Python's virtual environment):
pip install venv
- Create new virtual env by running the following code:
python -m venv <your-env-name>
- Activate your virtual env by running the following code:
cd <path-to-your-venv-directory> && source bin/activate
- Run:
pip install -r requirements.txt
Now you are all set for running the jupyter notebook/ the code itself with our relevant code, you can easily open the notebook with:
jupyter-lab