Last active
December 13, 2018 07:32
-
-
Save dlt/d0d21d778b610ebcbd71eabed069142a to your computer and use it in GitHub Desktop.
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 -y upgrade | |
sudo apt-get -y install unzip python3-pip python3-setuptools python3-dev build-essential libssl-dev libffi-dev xvfb | |
sudo pip3 install --upgrade pip | |
export LANGUAGE=en_US.UTF-8 | |
export LANG=en_US.UTF-8 | |
export LC_ALL=en_US.UTF-8 | |
locale-gen en_US.UTF-8 | |
sudo dpkg-reconfigure locales | |
pip3 install --upgrade pip | |
cd ~ | |
wget "https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb" | |
sudo dpkg -i google-chrome-stable_current_amd64.deb | |
sudo apt-get install -y -f | |
sudo rm google-chrome-stable_current_amd64.deb | |
git clone https://github.com/timgrossmann/InstaPy.git | |
latest_version=$(wget https://chromedriver.storage.googleapis.com/LATEST_RELEASE -O -) | |
wget https://chromedriver.storage.googleapis.com/${latest_version}/chromedriver_linux64.zip | |
unzip chromedriver_linux64 | |
mv chromedriver InstaPy/assets/chromedriver | |
chmod +x InstaPy/assets/chromedriver | |
chmod 755 InstaPy/assets/chromedriver | |
cd InstaPy | |
pip install . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment