notimplementederrorの取得:未登録のローダータイプに対してこの操作を実行できません

Aug 17 2020

Pandasデータフレームを使用して2つのExcelシートを比較するためのWindowsアプリケーションを作成しました。dataframe.stlye.applyを使用して、データに基づいて異なる色でいくつかの列を強調表示し、それを新しいExcelファイルにエクスポートしました。また、.pyを.exeに変換するためにpyinstallerを使用しました。

コードスニペット -save_op_file関数は、スタイルを適用してExcelに保存するためのものです。

def save_op_file(df):
    save_path = filedialog.asksaveasfilename(defaultextension='xlsx')
    writer = pd.ExcelWriter(save_path, engine='xlsxwriter')

    df1 = ''
    item_count = 0
    for items in changes:
        pos_count = 0
        for pos in items:
            if item_count == 0 and pos_count == 0:
                df1 = df.style.apply(write_style_yellow, row_idx=pos[0], col_idx=pos[1], axis=None)
            else:
                if pos_count == 0:
                    df1 = df1.apply(write_style_yellow, row_idx=pos[0], col_idx=pos[1], axis= None)
                else:
                    df1 = df1.apply(write_style_red, row_idx=pos[0], col_idx=pos[1], axis= None)

            item_count += 1
            pos_count += 1
            print('df1:')
            print(df1)
            df1.to_excel(writer, sheet_name='Sheet1', index=False)
    writer.save()
def write_style_yellow(x, row_idx, col_idx):
    color = 'background-color: yellow'
    df_styler = pd.DataFrame('', index=x.index, columns=x.columns)
    df_styler.iloc[row_idx,col_idx] = color
    return df_styler
def write_style_red(x,row_idx,col_idx):
    color = 'background-color: red'
    df_styler = pd.DataFrame('', index=x.index, columns=x.columns)
    df_styler.iloc[row_idx,col_idx] = color
    return df_styler

今、私がアプリケーションを実行しているとき、それはこのエラーを投げています-

    Exception in Tkinter callback 
       Traceback (most recent call last): 
         File "tkinter\ init .py", line 1883, in _call_ 
         File "Excel.py", line 199, in <lambda> 
         File "Excel.py", line 217, in save_op_file 
         File "pandas\core\frame.py", line 836, in style 
         File "<frozen importlib._bootstrap>", line 991, in _find_and_load 
         File "<frozen importlib._bootstrap>", line 975, in _find_and_load_unlocked 
         File "<frozen importlib._bootstrap>", line 671, in _load_unlocked 
         File "c:\users\asus\pycharmprojects\myproject\venv\lib\site- 
        packages\PyInstaller\loader\pyimod03_importers.py", line 493, in exec_module 
          exec(bytecode, module. dict ) 
         File "pandas\io\formats\style.py", line 51, in <module> 
         File "pandas\io\formats\style.py", line 124, in Styler 
         File "jinja2\environment.py", line 883, in get_template 
         File "jinja2\environment.py", line 857, in _load_template 
         File "jinja2\loaders.py", line 115, in load File "jinja2\loaders.py", line 248, in get_source 
         File "pkg_resources\ init .py", line 1404, in has_resource 
         File "pkg_resources\ init .py", line 1473, in _has 
         NotlmplementedError: Can't perform this operation for unregistered loader type*

この問題を解決するのを手伝っていただけませんか。前もって感謝します。

回答

PritamMondal Aug 18 2020 at 16:41

私はこれを解決することができます。

この問題は、pkg_resourcesがpyinstallerと互換性がなく、jinja2がpkg_resourcesを使用しているために発生しています。

解決:

.pyファイルを.exeに変換するためにpyinstallerの代わりにcx_Freezeを使用しましたが、問題なく動作しました。これはcx_Freezeで参照できます-Python用に.pyを.exeに変換するにはどうすればよいですか?

cx_Freezeを使用するための参照-

Python用に.pyを.exeに変換するにはどうすればよいですか?

ありがとう!