Skip to content
Advertisement

julia.install() fails on python import error

I am trying to run a Julia script from python. I have Julia 1.6.4 installed (also tried 1.7.3) and installed pip install julia from Pycharm’s terminal in the virtual environment. When importing julia and then running julia.install() I get the following error message:

I use Pycharm with a virtual environment with Python 3.9.7 for my project. However, I have also tried different python versions in different virtual environments or by using the base python installed. All give the same error.

Also, ~/.julia/packages/PyCall/*/deps/build.log does not exist for me.

JavaScript

Advertisement

Answer

  1. Julia needs to have PyCall installed
  2. PyCall in Julia needs to be configured to use the same Python that you are using to call Julia from

For more information see this post: I have a high-performant function written in Julia, how can I use it from Python?

Advertisement