Annexes:Python
Révision datée du 27 août 2024 à 13:58 par Admin (discussion | contributions) (Page créée avec « Téléchargez les sources et mettez-les dans /tmp : <pre> # Install Python-3.9.19 # https://www.python.org/ftp/python/3.9.19/Python-3.9.19.tgz </pre> <syntaxhighlight lan... »)
Téléchargez les sources et mettez-les dans /tmp :
# Install Python-3.9.19 # https://www.python.org/ftp/python/3.9.19/Python-3.9.19.tgz
1 # From : dbsqware@vmsqwarebox
2
3 mkdir /home/dbsqware/dbSQWare/SQWarePredict/python-src
4 mkdir -p /home/dbsqware/dbSQWare/SQWarePredict/python/3.9.19
5 cd /home/dbsqware/dbSQWare/SQWarePredict/python-src
6 tar -xzvf /tmp/Python-3.9.19.tgz
7 cd Python-3.9.19
8
9 # configure, dest => /home/dbsqware/dbSQWare/SQWarePredict/python/3.9.19
10 ./configure --prefix=/home/dbsqware/dbSQWare/SQWarePredict/python/3.9.19 --enable-optimizations
checking build system type... x86_64-pc-linux-gnu checking host system type... x86_64-pc-linux-gnu checking for python3.9... python3.9 checking for --enable-universalsdk... no checking for --with-universal-archs... no ...
1 # compil
2 make
Running code to generate profile data (this can take a while): # First, we need to create a clean build with profile generation # enabled. make profile-gen-stamp make[1]: Entering directory '/home/dbsqware/dbSQWare/SQWarePredict/python-src/Python-3.9.19' make clean make[2]: Entering directory '/home/dbsqware/dbSQWare/SQWarePredict/python-src/Python-3.9.19' find . -depth -name '__pycache__' -exec rm -rf {} ';' ...
1 # install
2 make install
Creating directory /home/dbsqware/dbSQWare/SQWarePredict/python/3.9.19/bin Creating directory /home/dbsqware/dbSQWare/SQWarePredict/python/3.9.19/lib if test "no-framework" = "no-framework" ; then \ /usr/bin/install -c python /home/dbsqware/dbSQWare/SQWarePredict/python/3.9.19/bin/python3.9; \ ... ... Installing collected packages: setuptools, pip WARNING: The scripts pip3 and pip3.9 are installed in '/home/dbsqware/dbSQWare/SQWarePredict/python/3.9.19/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. Successfully installed pip-23.0.1 setuptools-58.1.0
Dans le ~dbsqware/.bash_profile
1 # env Python 3.9.19 (pour SQWarePredict)
2 export PATH=/home/dbsqware/dbSQWare/SQWarePredict/python/3.9.19/bin:$PATH
3 export LD_LIBRARY_PATH=/home/dbsqware/dbSQWare/SQWarePredict/python/3.9.19/lib:$LD_LIBRARY_PATH