辞書をExcelファイルに書きたいと思っています。私はいつもいくつかのエラーメッセージを受け取り、誰かに私に説明する方法を教えてもらえますか?私はこのコードを実行するとPython write dictionary into excel
import sys
import argparse
import pyexcel
import pyexcel.ext.xls
import os
#reading input..
dict = {'Kalibrierwerte':
[array_1]
,
'Messwerte':
[array_2]
}
book=pyexcel.get_book(adict=dict)
book.save_as("../data/output2.xls")
if __name__ == '__main__':
sys.exit(main())
、私はこのエラーを取得する:
'File "C:\Python27\lib\site-packages\pyexcel\sources_init_.py", line 102, in _get_book raise NotImplementedError(MESSAGE_ERROR_NO_HANDLER) NotImplementedError: No suitable plugins imported or installed'
私は出力を書き込むためのさまざまな方法を試してみましたが、どれも成功しませんでした。
以下
を参照してくださいコードのエラーは何ですか?投稿コードの場合 – orvi
: 'ファイル "C:\ Python27 \ libには\サイト - パッケージ\ pyexcelソース\ __ init__.py \" _get_book レイズNotImplementedErrorで、ライン102、(MESSAGE_ERROR_NO_HANDLER) NotImplementedError:インポートまたはインストールされない、適切なプラグイン' – Miguel13366