You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to build Docker image for my project, that is using PyCall.
I get following error:
ERROR: Error building `PyCall`:
PREFIX=/root/.julia/conda/3
Unpacking payload ...
/root/.julia/conda/3/installer.sh: line 363: /root/.julia/conda/3/conda.exe: not found
/root/.julia/conda/3/installer.sh: line 366: can't open /root/.julia/conda/3/preconda.tar.bz2: no such file
┌ Info: Using the Python distribution in the Conda package by default.
└ To use a different Python version, set ENV["PYTHON"]="pythoncommand" and re-run Pkg.build("PyCall").
[ Info: Downloading miniconda installer ...
[ Info: Installing miniconda ...
ERROR: LoadError: failed process: Process(`/root/.julia/conda/3/installer.sh -b -f -p /root/.julia/conda/3`, ProcessExited(1)) [1]
I wouldn't use Conda at all, I would install Python stuff separately in your image and tell PyCall to use that, setting the PYTHON environment variable if necessary. (Using the system Python is the default on Unix systems other than MacOS.)
I want to build Docker image for my project, that is using PyCall.
I get following error:
Minimal working example: https://github.com/alenskorobogatova/ExamplePyCall.jl
The text was updated successfully, but these errors were encountered: