Does Seaborn use some unusual set of libraries over and above what, say matplotlib does?
On Wednesday, February 3, 2016 at 9:34:50 PM UTC-8, St Elmo Wilken wrote: > > Hi all, > > I'm trying to load the Python package Seaborn using Julia. I''m attempting: > > using PyCall > @pyimport seaborn as sb > > This generates the following warning in a new window: > > "Runtime Error! > > Program: C:\Users\St. Elmo\AppData\Local\Julia-0.4.2\bin\julia.exe > > R6034 > An application has made an attempt to load the C runtime library > incorrectly. > Please contact the application's support team for more information." > > It also outputs the following in the Julia terminal: > > ERROR: PyError (:PyImport_ImportModule) <type 'exceptions.WindowsError'> > WindowsError(1114, 'A dynamic link library (DLL) initialization routine > failed') > File "C:\Users\St. > Elmo\Anaconda2\lib\site-packages\seaborn\__init__.py", line 11, in <module> > from .widgets import * > File "C:\Users\St. Elmo\Anaconda2\lib\site-packages\seaborn\widgets.py", > line 8, in <module> > from ipywidgets import interact, FloatSlider, IntSlider > File "C:\Users\St. > Elmo\Anaconda2\lib\site-packages\ipywidgets\__init__.py", line 5, in > <module> > from .widgets import * > File "C:\Users\St. > Elmo\Anaconda2\lib\site-packages\ipywidgets\widgets\__init__.py", line 1, > in <module> > from .widget import Widget, DOMWidget, CallbackDispatcher, register, > widget_serialization > File "C:\Users\St. > Elmo\Anaconda2\lib\site-packages\ipywidgets\widgets\widget.py", line 13, in > <module> > from ipykernel.comm import Comm > File "C:\Users\St. > Elmo\Anaconda2\lib\site-packages\ipykernel\__init__.py", line 2, in <module> > from .connect import * > File "C:\Users\St. > Elmo\Anaconda2\lib\site-packages\ipykernel\connect.py", line 17, in <module> > import jupyter_client > File "C:\Users\St. > Elmo\Anaconda2\lib\site-packages\jupyter_client\__init__.py", line 4, in > <module> > from .connect import * > File "C:\Users\St. > Elmo\Anaconda2\lib\site-packages\jupyter_client\connect.py", line 21, in > <module> > import zmq > File "C:\Users\St. Elmo\Anaconda2\lib\site-packages\zmq\__init__.py", > line 42, in <module> > _libsodium = ctypes.cdll.LoadLibrary(bundled_sodium[0]) > File "C:\Users\St. Elmo\Anaconda2\lib\ctypes\__init__.py", line 443, in > LoadLibrary > return self._dlltype(name) > File "C:\Users\St. Elmo\Anaconda2\lib\ctypes\__init__.py", line 365, in > __init__ > self._handle = _dlopen(self._name, mode) > > [inlined code] from C:\Users\St. > Elmo\.julia\v0.4\PyCall\src\exception.jl:81 > in pyimport at C:\Users\St. Elmo\.julia\v0.4\PyCall\src\PyCall.jl:302 > > Has anyone run into issues like this before? Does anyone know how to fix > this? I have successfully imported other Python packages which makes me > think that it is seaborn specific... > > Thanks! >
