python 3.x - How to install Anaconda on RaspBerry Pi 3 Model B -


i know how install latest anaconda version continuum on raspberry pi 3 model b. appreciated...

on raspberry pi 3 model b - installation of miniconda (bundled python 3)

go , latest version of miniconda raspberry pi - made armv7l processor , bundled python 3 (eg.: uname -m)

wget http://repo.continuum.io/miniconda/miniconda3-latest-linux-armv7l.sh sudo md5sum miniconda3-latest-linux-armv7l.sh sudo /bin/bash miniconda3-latest-linux-armv7l.sh 

when installing change default dir installation /root/miniconda3 to:

/home/pi/miniconda3 

edit .bashrc file

sudo nano /home/pi/.bashrc 

...and add following line end of file

export path="/home/pi/miniconda3/bin:$path" 

save , close file & reboot raspberry pi

sudo reboot -h 

after reboot enter following command "python --version" should give you:

python 3.4.3 :: continuum analytics, inc. 

Comments

Popular posts from this blog

java - Jasper subreport showing only one entry from the JSON data source when embedded in the Title band -

serialization - Convert Any type in scala to Array[Byte] and back -

SonarQube Plugin for Jenkins does not find SonarQube Scanner executable -