Skip to content

Instantly share code, notes, and snippets.

@Sic4rio
Forked from anir0y/pip2 install
Created January 11, 2024 00:34
Show Gist options
  • Save Sic4rio/9ac7c7321eef9dc95b71dc0cea2e3ac8 to your computer and use it in GitHub Desktop.
Save Sic4rio/9ac7c7321eef9dc95b71dc0cea2e3ac8 to your computer and use it in GitHub Desktop.
#!/bin/bash
echo "Setting up pip2"
mkdir scripts && cd scripts
wget https://bootstrap.pypa.io/pip/2.7/get-pip.py
echo "Enter Sudo password is asked"
sleep 2
sudo python2 get-pip.py
pip2 install --upgrade setuptools
sudo apt-get install python-dev -y
clear
echo "----------"
echo "DONE!!!"
echo "----------"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment