Skip to content

Instantly share code, notes, and snippets.

@JinhaiZ
Created October 23, 2017 21:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JinhaiZ/26df934037432870103ef5c5158c047b to your computer and use it in GitHub Desktop.
Save JinhaiZ/26df934037432870103ef5c5158c047b to your computer and use it in GitHub Desktop.
Install various software on Raspberry 3
# install Scrapy
sudo apt-get install libffi-dev
sudo apt-get install libxml2-dev
sudo apt-get install libxslt1-dev
sudo apt-get install python-dev
sudo pip install scrapy
# install MongoDB
sudo apt-get update
sudo apt-get install mongodb-server
# install Miniconda
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 the default dir installation from /root/miniconda3 to:
/home/pi/miniconda3
#Edit the .bashrc file
sudo vi /home/pi/.bashrc
#...and add the following line to the end of the file
export PATH="/home/pi/miniconda3/bin:$PATH"
# Save and close this file & reboot Raspberry pi
sudo reboot -h now
# now check installation with python --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment