Skip to content
Alex Reinking edited this page Oct 14, 2021 · 1 revision

Welcome to the SYS_ATL wiki!

Virtual environment setup

To create a new virtual environment (ignored by git):

$ python -m venv venv

To enter a venv:

$ . venv/bin/activate

To exit a venv:

$ deactivate

To install or update dependencies:

$ python -m pip install -U pip wheel
$ pip install -r requirements.txt
Clone this wiki locally