On Monday, October 19, 2015 at 1:54:01 PM UTC-4, [email protected]
wrote:
>
> Hello,
>
> I performed a find for the .so files and I got the following :
>
> ./home/sarkar/.julia/v0.4/Conda/deps/usr/lib/libopenblas.so
>
> ./home/sarkar/.julia/v0.4/Conda/deps/usr/pkgs/openblas-0.2.14-3/lib/libopenblas.so
>
> How do I get libopenblas64_.so within 0.4 version of julia ?
>
Those are the ones installed by Conda and used within Conda, not Julia's
libopenblas with the incompatible ABI. So, they are less likely to cause
trouble.
However, it is odd that it is using Conda at all if you have a system
Python installed. It only uses Conda if the system Python wasn't working.
What happens if you do
ENV["PYTHON"]="python"
Pkg.build("PyCall")
to force it to use the system's python (/usr/bin/python) again?