Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,16 @@
|
|
1 |
import os
|
2 |
-
os.system('
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
os.system('python3.9 --version')
|
4 |
os.system('cat /etc/os-release')
|
5 |
os.system('python -m pip install --upgrade pip')
|
|
|
1 |
import os
|
2 |
+
os.system('wget https://www.python.org/ftp/python/3.9.7/Python-3.9.7.tgz')
|
3 |
+
os.system('tar -xzf Python-3.9.7.tgz')
|
4 |
+
os.system('cd Python-3.9.7')
|
5 |
+
os.system('pwd')
|
6 |
+
os.system('./configure --enable-optimizations')
|
7 |
+
os.system('make -j 2')
|
8 |
+
os.system('nproc')
|
9 |
+
os.system('make altinstall')
|
10 |
+
os.system('python3.9 --version')
|
11 |
+
os.system('cat /etc/os-release')
|
12 |
+
os.system('python -m pip install --upgrade pip')
|
13 |
+
|
14 |
os.system('python3.9 --version')
|
15 |
os.system('cat /etc/os-release')
|
16 |
os.system('python -m pip install --upgrade pip')
|