Anaconda在.profile和.bash_profile中修改PYHTONPATH时出现问题

时间:2016-06-01 19:55:22

标签: python bash terminal anaconda

所以我的.profile和.bash_profile设置如下:

enter image description here

但我也在使用anaconda Python包。

我正在按照这里的一系列说明进行操作:

http://www.skirt.ugent.be/pts/_install_mac_set_up.html

并收到此错误消息:

enter image description here

“没有名为pts的模块”

有谁知道我哪里出错了?在.bash_profile文件中似乎存在与Anaconda和pythonpath=命令的冲突......?

任何有关如何解决这个问题的建议/将两人结婚都将非常感激!

1 个答案:

答案 0 :(得分:0)

您错误地设置了PYTHONPATH。您包含了一个路径组件太多。

来自Configuring paths and aliases

  

添加以下行:

export PYTHONPATH=~/PTS
alias pts="python -m pts.do"
alias ipts="python -im pts.do"

但你添加了相当于

的内容
export PYTHONPATH=~/PTS/pts

哪条路径包含错误所抱怨的pts模块。

/pts行删除PYTHONPATH位,事情应该有效。