On Mon, Jul 20, 2015 at 3:58 PM, lawrence dworsky <m...@lawrencedworsky.com> wrote: > Nope: > > > julia> using PyCall > julia> @pyimport matplotlib.pyplot as plt > ERROR: PyError (:PyImport_ImportModule) <class 'ImportError'> > ImportError("No module named 'six'",)
This python ImportError seems pretty clear what's wrong... Does the import work in python? > File "C:\Python34\lib\site-packages\matplotlib\__init__.py", line 105, in > <mod > ule> > import six > in pyerr_check at C:\Users\Larry\.julia\v0.3\PyCall\src\exception.jl:58 > (repeat > s 2 times) > Julia> > > On Mon, Jul 20, 2015 at 2:52 PM, Steven G. Johnson <stevenj....@gmail.com> > wrote: >> >> If you do >> >> using PyCall >> @pyimport matplotlib.pyplot as plt >> >> does it work? > >