xxxxxxxxxx
// 1) Open a bash terminal on your Raspberry Pi
// 2) Type in:
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-armv7l.sh
// 3) Verify its integrity with md5sum with the following command:
sudo md5sum Miniconda3-latest-Linux-armv7l.sh
// 4) Then, type in:
sudo /bin/bash /home/pi/Miniconda3-latest-Linux-armv7l.sh
// 5) Accept the license agreement with yes
// 6) Add the install path to the PATH variable:
sudo nano /home/pi/.bashrc
// 7) Add then the following line at the end of the file .bashrc:
export PATH="/home/pi/miniconda3/bin:$PATH"
// 8) Save and exit
// 9) Check whether conda has been installed by typing in the terminal:
conda