Environment
First, download Python 3.11.8 (non-Conda version) from the Python
website. Once installed, note its path. We will refer to this path as $PYTHON
in the following sections.
Next, complete the following steps. Note lines commented with # Unix
should only be
run on MacOS or Linux while lines commented with # Windows
should only be run on Windows.
git clone https://github.com/TUL-Dev/QuantUS.git
cd QuantUS
$PYTHON -m pip install virtualenv
$PYTHON -m virtualenv .venv
source .venv/bin/activate # Unix
.venv\Scripts\activate # Windows cmd
sudo apt-get update & sudo apt-get install python3-dev # Linux
pip install -r requirements.txt
Following this example, this environment can be accessed via the source .venv/bin/activate
command from the repository directory on Unix systems, and by .venv\Scripts\activate
on Windows.