Setting up the environment - cogstat/cogstat GitHub Wiki
To set up your development environment, we recommend creating a virtual environment and installing the required packages.
Create a virtual environment, for example:
python -m venv cogstat-env
source cogstat-env/bin/activate
Install the required Python packages (from the CogStat source root directory):
pip install -r requirements.txt
You may run CogStat (from the CogStat source root directory):
python run_cogstat_gui.py
If you want to add CogStat Python package to your existing Python environment, see the installation instructions in the User documentation.
For creating CogStat installers, see relevant description in the Developer documentation.