web-dev-qa-db-ja.com

ModuleNotFoundError:Python3.8へのpythonnetのインストール中に「wheel」という名前のモジュールはありません

python 3.8でpip install pythonnetを使用してpythonnetをインストールしています。このModuleNotFoundError: No module named 'wheel'エラーが発生しています。調査を行いましたが、これに対する修正を見つけることができませんでした。この問題を修正する方法はありますか?以下は、私が取得しているエラーです。

前もって感謝します!

(c) 2018 Microsoft Corporation. All rights reserved.

C:\Users\user165>cd C://Python38

C:\Python38>pip install pythonnet
Collecting pythonnet
  Using cached https://files.pythonhosted.org/packages/4a/0a/5964a5a1fdf207fab8e718edd1f8d3578e0681577fe9abe0d9006f9718c2/pythonnet-2.4.0.tar.gz
    ERROR: Command errored out with exit status 1:
     command: 'c:\python38\python.exe' -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\user165\\AppData\\Local\\Temp\\pip-install-b8so9ms2\\pythonnet\\setup.py'"'"'; __file__='"'"'C:\\Users\\user165\\AppData\\Local\\Temp\\pip-install-b8so9ms2\\pythonnet\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' Egg_info --Egg-base pip-Egg-info
         cwd: C:\Users\user165\AppData\Local\Temp\pip-install-b8so9ms2\pythonnet\
    Complete output (5 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\user165\AppData\Local\Temp\pip-install-b8so9ms2\pythonnet\setup.py", line 18, in <module>
        from wheel import bdist_wheel
    ModuleNotFoundError: No module named 'wheel'
    ----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py Egg_info Check the logs for full command output.
WARNING: You are using pip version 19.2.3, however version 19.3.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.

C:\Python38>
2

ホイールがインストールされていることを確認する仮想環境(venv)で作業するか、setuptoolsと一緒に自分で明示的にインストールします。

python -m pip install wheel setuptools
3
Wim Lavrijsen

最初にすべての依存関係をインストールしてみてください。 pip install -r requirements.txt経由。次に、2番目のコマンドpip install pythonnetとして発行します。

これは私の場合にそれを解決しました(Centos7、Python 3.6.8、pythonnet 2.4.0)

0
langlauf.io