0

私はgraphlab createの初心者です。私はPython 3を自分のシステムにインストールしています。グラフ作成ランチャーの助けを借りて、jupyterノートブックで作業しています。import graphlabが正しく動作しない

私はgraphlab次の通知が起動するインポートしよう:

ACTION REQUIRED: Dependencies libstdc++-6.dll and libgcc_s_seh-1.dll not found. 

1. Ensure user account has write permission to C:\Users\bandriya\Anaconda2\envs\gl-env\lib\site-packages\graphlab 
2. Run graphlab.get_dependencies() to download and install them. 
3. Restart Python and import graphlab again. 

By running the above function, you agree to the following licenses. 

* libstdc++: https://gcc.gnu.org/onlinedocs/libstdc++/manual/license.html 
* xz: http://git.tukaani.org/?p=xz.git;a=blob;f=COPYING 

これは何を意味するのでしょうか?

答えて

0

は、あなたのipythonのノートブックに次の行を実行してみてください:

graphlab.get_dependencies() 

あなたは、この表示されるはずです。この機能を実行することにより

を、あなたは次のライセンスに同意するものとします。

XZをダウンロードします。 xzを抽出しています。 gcc-libsをダウンロードしています。 gcc-libsの抽出。 gcc-libsをインストールディレクトリにコピーします。

これが完了したら、ノートブックコンピュータを終了して再起動します。あなたはgraphlabをインポートすることができるはずです。 あなたのコンピュータにgraphlabをインストールしたときに、特定の依存関係やモジュールが正しくダウンロードされていないと思います。

関連する問題