MilesCranmer commited on
Commit
cc21173
1 Parent(s): 52c49dd

Fix installation of PyCall.jl

Browse files
Files changed (1) hide show
  1. examples/pysr_demo.ipynb +4 -0
examples/pysr_demo.ipynb CHANGED
@@ -66,7 +66,11 @@
66
  " wget -nv $URL -O /tmp/julia.tar.gz # -nv means \"not verbose\"\n",
67
  " tar -x -f /tmp/julia.tar.gz -C /usr/local --strip-components 1\n",
68
  " rm /tmp/julia.tar.gz\n",
 
 
 
69
  " julia -e 'println(\"Success\")'\n",
 
70
  "fi"
71
  ]
72
  },
 
66
  " wget -nv $URL -O /tmp/julia.tar.gz # -nv means \"not verbose\"\n",
67
  " tar -x -f /tmp/julia.tar.gz -C /usr/local --strip-components 1\n",
68
  " rm /tmp/julia.tar.gz\n",
69
+ "\n",
70
+ " echo \"Installing PyCall.jl...\"\n",
71
+ " julia -e 'using Pkg; Pkg.add(\"PyCall\"); Pkg.build(\"PyCall\")'\n",
72
  " julia -e 'println(\"Success\")'\n",
73
+ "\n",
74
  "fi"
75
  ]
76
  },