This repository stores the scripts that are locally available on every VM instance we spin up for the COSYNE 2024 conference. This repository is a submodule of the gvc-vm-crd repo at the vmassign/vm/local
directory.
While the VMs will just install these dependencies globally, developers should use a venv. For developers:
- Open terminal in project root directory
- Create a virtual environment
python3 -m venv vm
- Activate the virtual environment
source vm/bin/activate
- Install dependencies:
pip install -e .
- Deactivate the virtual environment
deactivate
- Delete the entire venv folder named "gvc" (assuming you followed our naming convention in creating the venv).