MilesCranmer commited on
Commit
7078b01
·
unverified ·
1 Parent(s): ad955c1

Avoid jill.sh to install julia

Browse files
Files changed (1) hide show
  1. gui/install_pysr.sh +5 -2
gui/install_pysr.sh CHANGED
@@ -1,8 +1,11 @@
1
  import os
2
 
3
  # Install Julia:
4
- if [ ! -f "/home/user/.local/bin/julia" ]; then
5
- bash -ci "$(curl -fsSL https://raw.githubusercontent.com/abelsiqueira/jill/main/jill.sh)"
 
 
 
6
  fi
7
 
8
  # Need to install PySR in separate python instance:
 
1
  import os
2
 
3
  # Install Julia:
4
+ if [ ! -d "/home/user/julia" ]; then
5
+ wget https://julialang-s3.julialang.org/bin/linux/x64/1.7/julia-1.7.3-linux-x86_64.tar.gz
6
+ tar zxvf julia-1.7.3-linux-x86_64.tar.gz
7
+ mkdir /home/user/julia
8
+ mv julia-1.7.3/* /home/user/.local/
9
  fi
10
 
11
  # Need to install PySR in separate python instance: