Skip to content

Instantly share code, notes, and snippets.

@jagt
Created December 16, 2014 19:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jagt/23e4aa9dfb5b8e75d3cf to your computer and use it in GitHub Desktop.
Save jagt/23e4aa9dfb5b8e75d3cf to your computer and use it in GitHub Desktop.
How to install IPython for Maya 2015.

How to install IPython for Maya 2015 mayapy on Windows.

So somehow you want to install IPython for mayapy. Make sure you have mayapy.exe on your path or you can invoke it somehow.

  1. Grab ez_setup.py here. Run it with mayapy. You can't get pip as mayapy is built with broken ssl support, which is needed for pip bootstrapping.

     mayapy ez_setup.py
    
  2. Grap latest pyreadline-x.x.zip here on PyPI. Install it offline. You can't install online as mayapy is lacking ssl.

     mayapy -m easy_install pyreadline-2.0.zip
    
  3. Grab latest ipython-x.x.zip here on PyPI. Install it offline:

     mayapy -m easy_install ipython-2.3.1.zip
    
  4. Now you can start IPython like this:

     mayapy -m IPython
    

    ipymel should also work after some fiddling.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment