Do you like this article? Share it with this link. Thanks!
Install Python for scientific computing from the repositories is very easy.
Open your terminal and execute:
sudo apt-get update && sudo apt-get upgrade && sudo apt-get dist-upgrade && sudo apt-get autoremove
Now install the dependencies:
sudo apt-get install python3 python3-pip
.sudo apt-get install python3-numpy python3-matplotlib python3-scipy python3-pandas python3-simpy
.sudo apt-get install ipython3 ipython3-notebook
.sudo apt-get install python3-opengl
.sudo apt-get install python3-pyqt5 python3-pyqt5.qtopengl python3-pyqt5.qtquick
.sudo apt-get install python3-h5py
.It is recommended to install OpenCV on Ubuntu or Debian that contains Python wrappers. You can install more packages with sudo apt-get install python3-skimage
and sudo apt-get install libatlas-dev libatlas3gf-base && sudo pip3 install scikit-learn
.
Execute sudo apt-get install spyder3
to install Spyder. If you want to enjoy the autocomplete in the IDE execute: sudo pip3 install rope_py3k
.
Do you like this article? Share it with this link. Thanks!