Created
October 23, 2017 21:02
-
-
Save JinhaiZ/26df934037432870103ef5c5158c047b to your computer and use it in GitHub Desktop.
Install various software on Raspberry 3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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