Skip to content

Instantly share code, notes, and snippets.

@boomshadow
Last active October 20, 2015 05:45
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 boomshadow/5be70f1593843b3444ab to your computer and use it in GitHub Desktop.
Save boomshadow/5be70f1593843b3444ab to your computer and use it in GitHub Desktop.
Installing InstaRaider on Ubuntu desktop 14.04 LTS.
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/
@boomshadow
Copy link
Author

The official instructions for InstaRaider gave me this SSL InsecurePlatform error when running the python script:

ImportError: cannot import name 'InsecurePlatformWarning'

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment