如何在zsh中为Python设置正确的$ PATH?

时间:2014-10-28 12:11:46

标签: python path zsh

今天我从bash切换到了zsh。除此之外,我创建了一个〜/ .zshrc文件。但是有一些打嗝。其中之一是虽然我仍然可以运行将输出到shell的Python程序,但在它们出现之前我会收到以下错误:

new-host-3% python program.py
zsh: /usr/bin/python: bad interpreter: /Library/Frameworks/Python.framework/Versions/2.7/bin/python2.: no such file or directory

这是我当前的,非常基本的〜/ .zshrc:

Set $PATH
export PATH="/usr/local/bin:$PATH"

# Export to vim
export EDITOR="vim"
bindkey -v

## vi style incremental search
bindkey '^R' history-incremental-search-backward
bindkey '^S' history-incremental-search-forward
bindkey '^P' history-search-backward
bindkey '^N' history-search-forward

## Make moving inside a directory easier
setopt AUTO_CD

我在这里缺少什么?我在OS X 10.6.8上通过自制软件安装了Python,zsh,virtualenv和c。我正在运行Python 2.7.6。

一切都与bash有关;没有错误。这让我觉得问题是zsh及其配置。

0 个答案:

没有答案