如何在 Mac OS 中使用最新版本的 python 註冊 ipython?

如何在 Mac OS 中使用最新版本的 python 註冊 ipython?

我已經透過 easy_install 安裝了 ipython,但它沒有像往常一樣在 /usr/local/bin/ 中建立檔案。

我知道我是否使用舊版的 python easy_install,例如 2.6 我在 /usr/local/bin 下有這個檔案:

#!/System/Library/Frameworks/Python.framework/Versions/2.6/Resources/Python.app/Contents/MacOS/Python
# EASY-INSTALL-ENTRY-SCRIPT: 'ipython==0.13','console_scripts','ipython'
__requires__ = 'ipython==0.13'
import sys
from pkg_resources import load_entry_point

sys.exit(
   load_entry_point('ipython==0.13', 'console_scripts', 'ipython')()
)

如何在 /usr/local/bin 中使用最新版本的 python 運行 ipython ?

相關內容