mirror of
https://github.com/engineer-man/piston.git
synced 2025-07-06 22:18:46 +02:00
9 lines
314 B
Bash
9 lines
314 B
Bash
#!/usr/bin/env bash
|
|
|
|
# install jelly
|
|
cd /opt && mkdir jelly && cd jelly
|
|
wget https://github.com/DennisMitchell/jellylanguage/archive/master.zip
|
|
unzip master.zip
|
|
cd jellylanguage-master
|
|
python3.8 -m pip install .
|
|
sed -i 's/\/usr\/local\/bin\/python3.8/\/opt\/python3\/Python-3.8.2\/python3.8/' /usr/local/bin/jelly
|