1

Python を始めようとしています2.7。プログラムと を含むいくつかのパッケージをインストールしましたが、graphlabいくつかの基本的な操作を実行できますが、パッケージをコードにインポートしようとするとエラーが発生しました。

私のコードは次のとおりです。

import graphlab as gl

##I got the folollowing error:
    import graphlab as gl
  File "C:\Python27\Lib\site-packages\graphlab\__init__.py", line 7, in <module>
    import graphlab.connect.aws as aws
  File "C:\Python27\Lib\site-packages\graphlab\connect\aws\__init__.py", line 9, in <module>
    from _ec2 import get_credentials, launch_EC2, list_instances, set_credentials, status, terminate_EC2
  File "C:\Python27\Lib\site-packages\graphlab\connect\aws\_ec2.py", line 17, in <module>
    import graphlab.connect.server as glserver
  File "C:\Python27\Lib\site-packages\graphlab\connect\server.py", line 6, in <module>
    from graphlab.cython.cy_ipc import PyCommClient as Client
ImportError: No module named cy_ipc

PYTHONPATHPATH (PythonPath が含まれています) を Google で変更しましたが、まだ機能していません。

PYTHONPATH = C:\Python27\;C:\Python27\Scripts;C:\Python27\lib;C:\Python27\Lib\site-packages;C:\Python27\Lib\site-packages\graphlab;
PATH=.;%PYTHONPATH%;....

いくつかの解決策を試しましたが、うまくいきませんでした。

助けていただければ幸いです。

4

1 に答える 1