-
-
Save lukaslundgren/2659457 to your computer and use it in GitHub Desktop.
| sudo apt-get install build-essential libsqlite3-dev zlib1g-dev libncurses5-dev libgdbm-dev libbz2-dev libreadline5-dev libssl-dev libdb-dev | |
| wget http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tgz | |
| tar -xzf Python-2.7.3.tgz | |
| cd Python-2.7.3 | |
| ./configure --prefix=/usr --enable-shared | |
| make | |
| sudo make install | |
| cd .. | |
| sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.6 20 | |
| sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.7 10 | |
| sudo update-alternatives --set python /usr/bin/python2.6 | |
| wget http://peak.telecommunity.com/dist/ez_setup.py | |
| sudo python2.7 ez_setup.py | |
| sudo easy_install-2.7 virtualenv | |
Thanks for this simple but lifesaving workflow! I was stupid enough to manually uninstall python2.7 but was able to recover it using this, saving me from the pain of completely setting up my system anew :).
@veralaub
I did the same mistake!
Thanks for sharing!
@wassname Package 'libreadline-gplv2-dev' has no installation candidate in Debian 12
@bektigalan
Found the answer here:
https://jira.mariadb.org/browse/MDEV-24798
replacing Package 'libreadline-gplv2-dev' with 'libeditreadline-dev' fixed the issue for me.
@bektigalan Found the answer here: https://jira.mariadb.org/browse/MDEV-24798
replacing Package 'libreadline-gplv2-dev' with 'libeditreadline-dev' fixed the issue for me.
thanks a lot @vanjy-eng i already solved it by downgrade my machine to debian 11, not exactly neat solution but saved me from headache
urllib2.HTTPError: HTTP Error 403: SSL is required ????
I tried installing on debian bookworm but on ARM orangepi / armbian
Just an update:
sudo apt-get install build-essential libsqlite3-dev zlib1g-dev libncurses5-dev libgdbm-dev libbz2-dev libreadline-gplv2-dev libssl-dev libdb-dev tk-devOn jesse
libreadline5-devis nowlibreadline-gplv2-dev. Also install tk-dev to make sure you get tkinker sys library.