Spaces:
Sleeping
Sleeping
File size: 415 Bytes
ad955c1 fd867c5 ad955c1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import os
# Install Julia:
if [ ! -f "/home/user/.local/bin/julia" ]; then
wget https://raw.githubusercontent.com/abelsiqueira/jill/main/jill.sh
chmod a+x jill.sh
./jill.sh --version 1.7.3 -y
fi
# Need to install PySR in separate python instance:
if [ ! -d "/home/user/.julia/environments/pysr-0.9.3" ]; then
export PATH="$PATH:/home/user/julia/bin/"
python -c 'import pysr; pysr.install()'
fi |