2021-03-05 13:12:19 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
curl "https://www.python.org/ftp/python/3.9.1/Python-3.9.1.tgz" -o python.tar.gz
|
2021-03-06 07:38:52 +01:00
|
|
|
tar xzf python.tar.gz --strip-components=1
|
|
|
|
rm python.tar.gz
|
2021-03-05 13:12:19 +01:00
|
|
|
|
|
|
|
./configure --prefix /piston/packages/python/3.9.1/python-3.9.1
|
|
|
|
make -j$(nproc)
|
2021-03-06 07:38:52 +01:00
|
|
|
ln -s python python3.9
|
2021-03-05 13:12:19 +01:00
|
|
|
|