Spaces:
Sleeping
Sleeping
File size: 307 Bytes
32bd149 aacdac2 472206c cb27467 472206c cb27467 472206c 48ec898 aacdac2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/bin/bash
git lfs install
git clone https://github.com/python/cpython
cd cpython
./configure --enable-optimizations --with-lto --prefix=$HOME/python
make
make test
make install
python -m pip install --upgrade --no-cache-dir pip
python -m pip install --upgrade --no-cache-dir -r deps.txt
python ./code.py
|