Installation#
There are two ways to install the application:
Downloading an installer for your operating system and following the instructions (recommended):
Note
The installers are not signed, so you may need to allow the installation in the system settings. On Windows, it may be flagged as a potential threat, but choose to keep it anyway.
Manually from the source code:
Clone the repository and navigate to the project directory:
git clone https://github.com/ParrishLab/ysa-gui.git cd ysa-guiCreate a virtual environment:
python -m venv ysa_envActivate the virtual environment:
Windows:
ysa_env/Scripts/activate
MacOS:
source ysa_env/bin/activateInstall the dependencies:
pip install -r src/helpers/update/requirements.txtRun the application:
python src/main.py
Important
The instructions for building from the source code assume that you have Python 3.10.9 installed on your system. If you don’t have it, you can download it from the official website.