TraffickStop / gather-the-children

0 stars 0 forks source link

Getting Started

While in the project directory, create a virtual environment in the env/ folder

python -m venv env

Next, activate the environment.

On Windows, run:

env\Scripts\activate.bat

on MacOS, run:

source env/bin/activate

To deactivate your environment on both Windows or Mac, run:

deactivate

Once your environment is activated, add pip-tools to manage package versions:

python -m pip install pip-tools

Now install the current dependencies to the project:

pip-sync

If you need to add a dependency:

Then commit the modified requirements.txt and requirements.in files to the repo.