Make julia verify check for libpython path

PyCall.python just seems to say 'python'
pull/50/head
yuvipanda 2017-07-30 11:22:28 -07:00
rodzic cd7c151959
commit 92d0c5e6d6
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -2,7 +2,8 @@
using PyPlot
# Make sure we are re-using the same conda python
if PyCall.python != "/srv/conda/bin/python"
if PyCall.libpython != "/srv/conda/lib/libpython3.6m"
println("Not re-using conda python! Using " * PyCall.libpython * " instead")
exit(1)
end