STAT3007 2024 Semester 1 Group Project
Note you may need to substitue "python" with "python3" or "py" in the following commands depending on your Python installation
After cloning the repo navigate to its location, for example
cd ~/GitHub/stat3007-project
Next create a virtual environment.
python -m venv myenv
Activate the virtual environment. For windows
source myenv/Scripts/activate
For POSIX
source myenv/bin/activate
For windows only, you can install requirements with the following.
pip install -r requirements.txt
Install our project package in edit mode
pip install -e .
Start a Jupyter Lab server
jupyter lab
You should now be able to run the notebook at super_resolution/notebooks/example_notebook.ipynb
.
To deactivate the virtual environment when done, use
deactivate