mirror of
https://github.com/mattwind/alfs.git
synced 2025-08-02 23:52:28 +00:00
18 lines
229 B
Bash
Executable File
18 lines
229 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd /sources/
|
|
|
|
tar xvf Python-3.8.5.tar.xz
|
|
cd Python-3.8.5
|
|
|
|
./configure --prefix=/usr \
|
|
--enable-shared \
|
|
--without-ensurepip
|
|
make
|
|
make install
|
|
|
|
cd /sources/
|
|
rm -rf Python-3.8.5
|
|
|
|
echo "Done"
|