Mj94
Mj94

Reputation: 11

How can I download and install Numpy and Pandapower?

How can I Download and install numpy and pandapower on the RASPBIAN JESSIE LITE Minimal image based on Debian Jessie? the one without the GUI. And how can I download and install Pip and miniconda on it as well?

Upvotes: -1

Views: 366

Answers (1)

Victor Li
Victor Li

Reputation: 113

um i am pretty sure the commands are the same are they not? Have you searched this up yet? i am sure that if you have another computer you can just search up miniconda and copy the download link and follow the instructions. pip is automatically installed in miniconda and if you dont have it do

sudo apt-get install python-pip

and for numpy do

pip -U install numpy

or

conda install numpy

for pandapower

conda install pandapower
pip -U install pandapower

or if you cant get miniconda with the method above just do

sudo apt-get install python

that will get you python and pip.

Good Luck!!

Upvotes: -1

Related Questions