Installing ipython with readline on the mac

前端 未结 6 1451
温柔的废话
温柔的废话 2020-12-14 09:16

I am using ipython on Mac OS 10.5 with python 2.5.1 (I would actually like to use ipython for 2.6.1, but it doesn\'t seem to be available?)

I installed ipython via e

6条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-14 09:54

    The only working way on MacOS Mavericks is to:

    1. switch to your virtualenv workon myproject_name
    2. delete readline and ipython (if you installed it before) pip uninstall readline ipython
    3. install readline only via easy_install (pip - no work!) easy_install readline
    4. finally install ipython with pip pip install ipython

    It's work well on my MacOS and tested a long time.

提交回复
热议问题