Authored by Andrew Hall and Seth Peterson
python -m venv .venv # Windows/Conda
python3 -m venv .venv #MacOS/Linux
.venv/Scripts/activate # Windows
source .venv/bin/activate #MacOS/Linux/Conda
pip install --upgrade pip
pip install -r requirements.txt
To run an experiment, simply execute the corresponding experiment py file from the command line as a module. Note that there should be no back slashes or .py extensions in the command.
python -m research.experiments.experiment1
mypy . --explicit-package-bases --disallow-untyped-defs