Windows-尝试在SublimeText3中导入python模块时出现ImportError

我正在尝试在ST3中导入熊猫,并且出现以下错误:

Traceback (most recent call last):
  File "c:\users\name\appdata\local\temp\tmpzv_2y9.py",line 2,in <module>
    import pandas as pd 
ImportError: No module named 'pandas'
[Finished in 0.6s]

我的熊猫包保存在

C:\ProgramData\Anaconda3\Lib\site-packages

为解决此问题,我尝试了here提供的解决方案。以下是我在Preference下的设置。但这没有帮助。我错过了什么?我正在使用Windows FYI。

{
"path": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","env":{"PYTHONPATH":"C:/ProgramData/Anaconda3/lib/site-packages"},"cmd": ["python","-u","$file"],"file_regex": "^[ ]*File \"(...*?)\",line ([0-9]*)","selector": "source.python"
}

相关文章

Python中的函数(二) 在上一篇文章中提到了Python中函数的定...
Python中的字符串 可能大多数人在学习C语言的时候,最先接触...
Python 面向对象编程(一) 虽然Python是解释性语言,但是它...
Python面向对象编程(二) 在前面一篇文章中谈到了类的基本定...
Python中的函数(一) 接触过C语言的朋友对函数这个词肯定非...
在windows下如何快速搭建web.py开发框架 用Python进行web开发...