2017-08-08 24 views
0

私はMacを使用しています。ステップ1:shogunのpythonインターフェイスをインストールするにはどうすればいいですか?

sudo conda install -c conda-forge shogun

ステップ2:

$ python 
Python 2.7.12 |Anaconda custom (x86_64)| (default, Jul 2 2016, 17:43:17) 
[GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00)] on darwin 
Type "help", "copyright", "credits" or "license" for more information. 
Anaconda is brought to you by Continuum Analytics. 
Please check out: http://continuum.io/thanks and https://anaconda.org 
>>> import shogun 
>>> from shogun import RealFeatures, PolyKernel, CSVFile 
Traceback (most recent call last): 
    File "<stdin>", line 1, in <module> 
ImportError: cannot import name RealFeatures 

また、私はRPMを使用してFedoraの上で試してみました。 C++インタフェースの作品(gcc shogun.cpp -I/usr/include/shogun/base -lshogun -L/usr/lib64/libshogun.*)ことを確認した後、私は、その後の指示にhereに続き、PYTHONPATH=/usr/lib64/python2.7/site-packages/modshogun.py

を設定し、:

$ python 
Python 2.7.13 (default, May 10 2017, 20:04:36) 
[GCC 6.3.1 20161221 (Red Hat 6.3.1-1)] on linux2 
Type "help", "copyright", "credits" or "license" for more information. 
>>> import shogun 
>>> from shogun import RealFeatures, PolyKernel, CSVFile 
Traceback (most recent call last): 
    File "<stdin>", line 1, in <module> 
ImportError: cannot import name RealFeatures 

答えて

0

をここでの問題は、その将軍のドキュメントは、開発中のバージョン6.1のために現在考えられますcondaパッケージは最新のリリース6.0用です。 6.0では、from modshogun import RealFeaturesを実行する必要があります。 shogunパッケージは古いインターフェイスであり、最新の「モジュール式」のパッケージはmodshogunです。これは、今後の6.1リリースではshogunに改名されます。

関連する問題