Je veux déplacer Python 2.7 vers Python 3 avec EoL, mais rien n'indique que Python 3 viendra sur le serveur de location de Sakura, alors je l'ai construit moi-même.
$ 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
Connexes: J'ai reconstruit Python sur le serveur de location de Sakura (Note) / Mercurial a cessé de fonctionner après la migration de Python 2 vers Python 3 (Remarque)
Recommended Posts