0

を使用して python パッケージ (BentoML) をインストールしようとしpip install bentomlましたが、次のエラーが表示され、ModuleNotFoundError: No module named 'wrapt'. ただし、wraptモジュールは実際には私のsite-packagesフォルダーに含まれているため、pip install wrapt既にインストールされているというメッセージが表示wraptされます。

pip を使用して他のパッケージをインストールできますが、alembicパッケージが原因でこの問題が発生します。Anaconda Python を使用して pip を使用してインストールできましたが、この Python バージョンでインストールしたいと考えています。最善の方法は何ですか?

Windows 10 デバイスで Python 3.8.1 を使用しています。

  ERROR: Command errored out with exit status 1:
   command: 'c:\users\username\appdata\local\programs\python\python38\python.exe' 'c:\users\username\appdata\local\programs\python\python38\lib\site-packages\pip\_vendor\pep517\_in_process.py' get_requires_for_build_wheel 'C:\Users\user~1.lastname\AppData\Local\Temp\tmpd30adik_'
       cwd: C:\Users\username\AppData\Local\Temp\pip-install-qers2adl\alembic
  Complete output (14 lines):
  Fatal Python error: init_import_size: Failed to import the site module
  Python runtime state: initialized
  Traceback (most recent call last):
    File "c:\users\username\appdata\local\programs\python\python38\lib\site.py", line 580, in <module>
      main()
    File "c:\users\username\appdata\local\programs\python\python38\lib\site.py", line 573, in main
      execsitecustomize()
    File "c:\users\username\appdata\local\programs\python\python38\lib\site-packages\certifi_win32\bootstrap.py", line 37, in _execsitecustomize
      _register_bootstrap_functions()
    File "c:\users\username\appdata\local\programs\python\python38\lib\site-packages\certifi_win32\bootstrap.py", line 25, in _register_bootstrap_functions
      from . import wrapt_certifi
    File "c:\users\username\appdata\local\programs\python\python38\lib\site-packages\certifi_win32\wrapt_certifi.py", line 3, in <module>
      import wrapt
  ModuleNotFoundError: No module named 'wrapt'
  ----------------------------------------
ERROR: Command errored out with exit status 1: 'c:\users\username\appdata\local\programs\python\python38\python.exe' 'c:\users\username\appdata\local\programs\python\python38\lib\site-packages\pip\_vendor\pep517\_in_process.py' get_requires_for_build_wheel 'C:\Users\user~1.lastname\AppData\Local\Temp\tmpd30adik_' Check the logs for full command output.
4

1 に答える 1