This is a code repository for the WINTER observatory. It should include all the control code to run the robotic observatory, as well as the scheduler.
This repository is separate from the instrument development repository.
Try this:
- conda update -n base -c defaults conda
- go to top level
observatorydirectory - Make a new conda environment in this directory:
conda create --prefix .conda python=3.9 - Activate the new environment in this directory:
conda activate ./.conda - Update pip:
pip install --upgrade pip - Install dependencies:
pip install -e .Alternately if you want to install the dev dependencies:pip install -e ".[dev]"