PDA

View Full Version : how to install python on YouStable shared hosting?



Imprahlad
12-14-2022, 04:58 AM
how to install python on YouStable shared hosting?

Proptality 1
02-02-2023, 02:08 PM
mkdir ~/python27 cd ~/python27 wget https://www.python.org/ftp/python/2.7.10/Python-2.7.10.tar.xz.
tar xfv Python-2.7.10.tar.xz find ~/python27 -type d -exec chmod 755 {} \;
cd Python-2.7.10 ./configure --prefix=$HOME/python27 make make install