-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't pyimport ssl #58
Comments
This seems to be because when loading Workaround I found was to do, Libdl.dlopen("/home/tom/.julia/v0.5/Conda/deps/usr/lib/python2.7/lib-dynload/../../libssl.so")
Libdl.dlopen("/home/tom/.julia/v0.5/Conda/deps/usr/lib/python2.7/lib-dynload/_ssl.so")
using PyCall; pyimport("ssl") |
Similar issue here, JuliaPy/PyCall.jl#65 LD_PRELOAD=/home/tom/.julia/v0.5/Conda/deps/usr/lib/libssl.so julia |
Thanks so much @isuruf! This got me past the ssl error. 👍 |
I've traced an unrelated issue back to the ssl package. For some reason I can
import ssl
from thepython
executable in the Conda.jl directory, but it errors when I try to:using PyCall; pyimport("ssl")
Any ideas would be greatly appreciated! Here's the full output:
The text was updated successfully, but these errors were encountered: