Last active
October 20, 2015 05:45
-
-
Save boomshadow/5be70f1593843b3444ab to your computer and use it in GitHub Desktop.
Installing InstaRaider on Ubuntu desktop 14.04 LTS.
This file contains 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
sudo apt-get update | |
sudo apt-get upgrade | |
sudo apt-get install git firefox | |
#Python 3 should already be installed on Ubuntu 14 | |
apt-get install python3-dev libffi-dev libssl-dev | |
wget https://bootstrap.pypa.io/get-pip.py | |
sudo -H python3 get-pip.py | |
sudo -H pip install requests[security] | |
sudo -H pip install urllib3 | |
sudo -H pip install selenium requests | |
git clone https://github.com/akurtovic/InstaRaider | |
cd InstaRaider | |
python3 instaRaider.py -n [# of pics] [IG_USERNAME] [/download/path] | |
python3 instaRaider.py -n 5 boomshadowjake ~/pics/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The official instructions for InstaRaider gave me this SSL InsecurePlatform error when running the python script:
I found the solution from reading on StackOverflow: http://stackoverflow.com/questions/29099404/ssl-insecureplatform-error-when-using-requests-package.
Basically, need to install the latest pip (not from apt), specifically invoke python3, and pip install requests[security].
These steps worked flawlessly for me, so I'm posting them as a gist for anyone else to use.