In order to get all the dependencies in place
for the python packages we use the conda
environment
in this project.
Miniconda is a cross-platform package manager that allows managing dependencies and creates a corresponding python environment.
-
Install miniconda
-
Create the
bno055-usb-stick
environment:conda env create -f environment.yml
-
Update the
bno055-usb-stick
environment:conda-env update -n bno055-usb-stick -f environment.yml
-
Activate the
bno055-usb-stick
environment: Mac and Linux:source activate bno055-usb-stick
-
Remove the
bno055-usb-stick
environment (delete the corresponding python packages):conda env remove --name bno055-usb-stick