Sublime Text2 Import error: No module named Gnuplot

我的未来我决定 提交于 2019-11-30 09:02:21

问题


I'm trying to use Gnuplot in a Python script I'm writing in Sublime Text. Whenever I build, I get the error message

Traceback (most recent call last): 
    File "..." line 4, in <module>
       import Gnuplot
ImportError: No module named Gnuplot

If I do the exact same code lines directly in Terminal, I have no problem importing and using Gnuplot.

The import error seems to be common, just with other modules. Usually the fix is related to PYTHONPATH. However, Gnuplot is on my computer located in

/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages

and should thus be found.

Anybody who's got a fix to this one?


回答1:


Sublime Text 2 comes with its own Python interpreter which sets PYTHONPATH independently from the system Python interpreter you are referring to.

Please see this question how to set a different PYTHONPATH for Sublime. Please note that if the library you are using was compiled against a different Python version than Sublime is using loading the native dynamically linked libraries will probably cause Sublime Text 2 to crash.

https://stackoverflow.com/a/9919953/315168



来源:https://stackoverflow.com/questions/13239839/sublime-text2-import-error-no-module-named-gnuplot

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!