repo/python/build

13 lines
344 B
Text
Raw Normal View History

2021-07-16 23:33:05 +03:00
wget https://www.python.org/ftp/python/3.9.6/Python-3.9.6.tar.xz
2021-07-16 03:05:23 +03:00
tar -xf Python-3.9.6.tar.xz
cd Python-3.9.6
CXX="/usr/bin/g++" \
./configure --prefix=/usr \
--enable-shared \
--with-system-expat \
--with-system-ffi \
--with-ensurepip=yes
make
make DESTDIR="$1" install