Build any python version for venv: Difference between revisions
Jump to navigation
Jump to search
Line 19: | Line 19: | ||
wget -O- https://www.python.org/ftp/python/${ver}/Python-${ver}.tar.xz | tar xJf - | wget -O- https://www.python.org/ftp/python/${ver}/Python-${ver}.tar.xz | tar xJf - | ||
cd Python-${ver} | cd Python-${ver} | ||
./configure --enable-optimizations --with-lto=full | ./configure --enable-optimizations --with-lto=full --prefix=$PWD/run --exec-prefix=$PWD/run --libdir=$PWD/run/lib64 | ||
make -j8 | make -j8 | ||
make install | make install | ||
/usr/bin/python3 --version | |||
== Use The Build == | == Use The Build == |
Revision as of 17:02, 3 February 2023
Build Python
work in progress
Status: builds and run/bin/python3 --version works. But venv, pip or interpreter mode do not.
Asked for help: https://discuss.python.org/u/joba-1/activity (github based account)
Prerequisites
Most should be there, check https://devguide.python.org/getting-started/setup-building/index.html#install-dependencies for details
zypper in tk-devel sqlite3-devel gdbm-devel readline6-devel openssl-devel libffi-devel
User Build
ver=3.11.1 cd wget -O- https://www.python.org/ftp/python/${ver}/Python-${ver}.tar.xz | tar xJf - cd Python-${ver} ./configure --enable-optimizations --with-lto=full --prefix=$PWD/run --exec-prefix=$PWD/run --libdir=$PWD/run/lib64 make -j8 make install /usr/bin/python3 --version
Use The Build
run/bin/python3 --version
run/bin/python3 -m venv /new/env/path
. /new/venv/path/bin/activate