Created
September 5, 2021 04:45
-
-
Save petabyt/158078fe2aea5e8428bbbee6ea39e10c to your computer and use it in GitHub Desktop.
Installing Python2 and Python2 pip for Magic Lantern
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 install python2.7-minimal | |
# If you want to refer to "python2.7" as "python" | |
sudo apt install python-is-python2 | |
# Now, get pip2. | |
wget https://bootstrap.pypa.io/pip/2.7/get-pip.py | |
sudo python2.7 get-pip.py | |
``` | |
Manually remove `python python-pip python-docutils` from install.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment