Control station code for remote operation of Unmanned-Surface-Vehicle(USV).
create a new conda environment with the following command
conda create --name capstone python=3.11.7activate the environment
conda activate capstoneinstall the libraries from the requirements.txt file (recommended)
pip install -r requirements.txtafter installing a new library, update the requirements.txt file with the following commands
pip freeze > requirements.txt
Note from Alex: pip freeze only saves the packages that are installed with pip install in
your environment.
Also, pip freeze saves all packages in the environment including those that you don't use in
your current project (if you don't have virtualenv)
So it is recommended that you use this instead:
pip install pipreqs
pipreqs /path/to/project ./run-control-station.sh python3 src/auto_reload.py . python3 src/webGUI.py