Project for the Advanced programming in Python course @ TVZ Zagreb.
First, we need to create virtual environment for our python project with venv
module to avoid installing Python packages globally which could break systems tools or other projects.
You can install virtual environment using pip with following command in your project folder.
On macOS and Linux:
$ python3.8 -m venv env
On Windows:
$ py -3.8 -m venv env
Before you can start installing or using packages in venv you will need to activate it.
On macOS and Linux:
$ source env/bin/activate
On Windows:
$ .\env\Scripts\activate
Now that you are in virtual environment you can install required packages for this project.
(env) $ pip install -r modules.txt