pathfinder-for-autonomous-navigation / psim

Six DOF flight simulator and related GNC implementations.
MIT License
4 stars 6 forks source link

Remove Virtual Environment Requirement from Bazel Builds #272

Closed kylekrol closed 3 years ago

kylekrol commented 3 years ago

Previously, a local virtual environment had to exit with pyyaml installed for the autocoder to run. I've removed that dependency in favor on the experimental Python rules handling of pip requirements.

This will make installing with pip install -e <path-to-psim> easier as a virtual environment won't have to be present for the install to work!

kylekrol commented 3 years ago

@shihaocao this means on the flight software side of things simply cloning the psim submodule and calling pip install -e lib/common/psim will now work!

shihaocao commented 3 years ago

bet