You're dealing with two different versions of Pandas. Check the version and 
install location in each environment like this:

    import pandas
    print(pandas.__version__)
    print(pandas.__file__)

Before using the command prompt, are you activating the conda environment 
in which the kernel is installed? If not, then you're not using the same 
Pandas installation as the kernel.

If your module actually needs to support two different Pandas versions, try 
to import the utility function from the new location first, and use the old 
location if that fails. Have a look at "alternative 4" here:
http://python-future.org/compatible_idioms.html#urllib-module

Hope that helps,
  Roland

-- 
You received this message because you are subscribed to the Google Groups 
"Project Jupyter" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jupyter/8ac756c1-4f79-4f24-861f-b2c4f104957c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to