13 lines
344 B
Text
13 lines
344 B
Text
|
wget https://www.python.org/ftp/python/3.9.6/Python-3.9.6.tar.xz
|
||
|
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
|