mac系统下Eclipse + pydev配置python Interpreter

时间:2021-07-26 08:55:06
mac系统下Eclipse + pydev配置python Interpreter
 
之前都在windows下使用Eclipse + pydev 进行开发,未发现什么异常,最近对wxpy、itchat有点兴趣,在mac系统下使用pydev进行测试时,总是提示:ImportError: No module named wxpy。
 mac系统下Eclipse + pydev配置python Interpreter
mac系统下Eclipse + pydev配置python Interpreter
但在命令行下进行import wxpy时,未提示异常:
mac系统下Eclipse + pydev配置python Interpreter
 mac系统下Eclipse + pydev配置python Interpreter
因此怀疑pydev中配置的Python Interpreters有问题,打开Eclipse->Perferences->PyDev->Interpreters->Python Interpreter,重新配置,点击Advanced Auto-Config:

mac系统下Eclipse + pydev配置python Interpreter

mac系统下Eclipse + pydev配置python Interpreter
在终端中输入:which python,查看默认的python路径,在Eclipse中找到对应的路径,进行配置。
mac系统下Eclipse + pydev配置python Interpreter
 mac系统下Eclipse + pydev配置python Interpreter
这样即可以正常运行wxpy了,同时在packages列表中,pip安装后的包也可以正常显示了。
mac系统下Eclipse + pydev配置python Interpreter
 mac系统下Eclipse + pydev配置python Interpreter