Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 842 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 842 Bytes

cosyne_vm

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.

Dependencies

While the VMs will just install these dependencies globally, developers should use a venv. For developers:

  1. Open terminal in project root directory
  2. Create a virtual environment
python3 -m venv vm
  1. Activate the virtual environment
source vm/bin/activate
  1. Install dependencies:
pip install -e .

Removing your venv

  1. Deactivate the virtual environment
deactivate
  1. Delete the entire venv folder named "gvc" (assuming you followed our naming convention in creating the venv).