Skip to content
Advertisement

PyCall can’t find scipy in Julia

I’m currently rewriting a bunch of matlab code into julia. These codes envolves a lot of math and, particularly, interpolation functions for a 3D mesh. It is easy to deal with this in matlab: all I need to do is to use interp3 function. Once I coundn’t find any simple way to do similar in Julia, I’m trying to use some Scipy features through PyCall. Now, the problem: I’ve already installed PyCall, changed ENV[PYTHON] to the path of my own installed anaconda. No metter what, and I extensively looked for solutions, I still get the following error message:

JavaScript

Also, everything I tried, I tried both on windows 10 and Linux. I don’t know what to do anymore! I would much appreciate the help! Thanks in advance!

Advertisement

Answer

Install scipy with Conda – Julia’s interface to Python’s packages.

JavaScript

now pyimport("scipy") will work like charm.

Note that with a custom Python installation various things can happen (and you are left on your own with managing that), hence I recommend you to use Python built-into Julia.

This is how you switch back to in-built Python:

JavaScript
Advertisement