Python 2.7 Windows 10上的Graphlab:导入错误:没有名为Graphlab的模块

Python 2.7 Windows 10上的Graphlab:导入错误:没有名为Graphlab的模块,python-2.7,windows-10,importerror,graphlab,Python 2.7,Windows 10,Importerror,Graphlab,我正在尝试在Windows 10-64位上开始使用Graphlab 我已经成功地遵循了这里列出的说明 然后我编写了一个示例代码: >import graphlab >from graphlab import SFrame >sf=graphlab.SFrame.read_csv('../Dataset_movielens-latest-small/ratings.csv', delimiter=',', header= True, column_type_hints= li

我正在尝试在Windows 10-64位上开始使用Graphlab

我已经成功地遵循了这里列出的说明

然后我编写了一个示例代码:

>import graphlab
>from graphlab import SFrame

>sf=graphlab.SFrame.read_csv('../Dataset_movielens-latest-small/ratings.csv', delimiter=',', header= True, column_type_hints= list[int,int,float,int])

>sf.print_rows(100,4)
之后,我尝试在激活conda环境后使用提示符运行它,但我得到了这个结果

>[gl-env] C:PATH>Toppop_graphlab.py
>Traceback (most recent call last):
>  File "C:PATH\Toppop_graphlab.py", line 1, in <module>
>    import graphlab
>ImportError: No module named graphlab
正如你所看到的,它工作得很好。我只想在notepad++上编写一个python脚本,并像其他脚本一样运行它,我能做什么


感谢您的关注

安装依赖项并重新启动python。这可能会有帮助。
graphlab.get_dependencies()

安装依赖项并重新启动python。这可能会有帮助。 graphlab.get_dependencies()

>[gl-env] C:PATH>python
>Python 2.7.12 |Anaconda 4.1.1 (64-bit)| (default, Jun 29 2016, 11:07:13) [MSC v.1500 64 bit (AMD64)] on win32
>Type "help", "copyright", "credits" or "license" for more information.
>Anaconda is brought to you by Continuum Analytics.
>Please check out: *links to continuum and anaconda that i can't post*
>>>> import graphlab
>>>>