Ich möchte Python 2.7 mit EoL auf Python 3 verschieben, aber es gibt keine Anzeichen dafür, dass Python 3 auf Sakuras Mietserver kommt, also habe ich es selbst erstellt.
$ cd /home/xxx/local/src/
$ wget https://www.python.org/ftp/python/3.8.3/Python-3.8.3rc1.tar.xz
$ xz -dc Python-3.8.3rc1.tar.xz | tar xf -
$ cd Python-3.8.3rc1
$ ./configure --prefix=/home/xxx/local/python-3.8.3rc1
$ make
$ make install
$ cd ../../python-3.8.3rc1/bin
% ./pip3 install --upgrade pip
$ ./pip3 install Genshi
$ ./pip3 install SQLAlchemy
$ ./pip3 install mercurial
$ cd ../../
$ ln -s /home/xxx/local/python-3.8.3rc1/ python3
$ cd bin
$ ln -s /home/cyanet/local/python3/bin/python3
Verwandte Themen: Ich habe Python erneut auf Sakuras Mietserver erstellt (Hinweis) / Mercurial funktioniert nach der Migration von Python 2 auf Python 3 nicht mehr (Hinweis)
Recommended Posts