Spaces:
Sleeping
Sleeping
File size: 412 Bytes
32bd149 aacdac2 b5b7f28 315c83c 472206c cb27467 472206c cb27467 472206c 48ec898 aacdac2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#!/bin/bash
CONDA_ENV=$(head -1 ./env.yml | cut -d" " -f2)
eval "$(conda shell.bash hook)"
conda activate $CONDA_ENV
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
|