JuliaPy / Conda.jl

Conda managing Julia binary dependencies
Other
174 stars 57 forks source link

Scipy.interpolate #159

Closed henry2004y closed 5 years ago

henry2004y commented 5 years ago

Hi,

I was trying to install Scipy on Mac OSX 10.12.6 throught Conda using Julia 1.1. It was installed successfully, but I couldn't import Scipy.interpolate, receiving info that this specific subpackage was not installed.

stevengj commented 5 years ago
using Conda, PyCall
Conda.add("scipy")
pyimport("scipy.interpolate")

works for me.

henry2004y commented 5 years ago

I just tried to uninstall and install scipy again. Now it works, so I don't know what was happening then. It's just so weird.