Installing SciPy in the Olympe Environment

Would anyone know how to install the scipy library into Olympe? Any help is greatly appreciated.

Hi,

Once you are in the olympe python environment, you can just “pip install” any package you want.

In a terminal from your parrot-groundsdk workspace directory:

# install the SciPy packages in the olympe python virtualenv
$ products/olympe/linux/env/setenv pip install numpy scipy matplotlib ipython jupyter pandas sympy nose

Alternatively:

# activate the python shell environment 
$ source products/olympe/linux/env/shell
# install the SciPy packages
(olympe-python3) $ pip install numpy scipy matplotlib ipython jupyter pandas sympy

Please let me know if that works for you.
Regards,

Nicolas

1 Like

Yup, that’s it. Should have thought of that haha.