私がしたことは公式のGithubサイトの指示に従うことです
!git clone https://github.com/NVIDIA/apex
!cd apex
!pip install -v --no-cache-dir ./
_
それは私にエラーを与えます:
ERROR: Directory './' is not installable. Neither 'setup.py' nor 'pyproject.toml' found.
Exception information:
Traceback (most recent call last):
File "/usr/local/lib/python3.6/dist-packages/pip/_internal/cli/base_command.py", line 178, in main
status = self.run(options, args)
File "/usr/local/lib/python3.6/dist-packages/pip/_internal/commands/install.py", line 326, in run
self.name, wheel_cache
File "/usr/local/lib/python3.6/dist-packages/pip/_internal/cli/base_command.py", line 268, in populate_requirement_set
wheel_cache=wheel_cache
File "/usr/local/lib/python3.6/dist-packages/pip/_internal/req/constructors.py", line 248, in install_req_from_line
"nor 'pyproject.toml' found." % name
pip._internal.exceptions.InstallationError: Directory './' is not installable. Neither 'setup.py' nor 'pyproject.toml' found.
_
"!"を使用する代わりにcolabでcd
コマンドの前に "% 'を使用してください
!git clone https://github.com/NVIDIA/apex
%cd apex
!pip install -v --no-cache-dir ./
_
上記のコードはちょうどうまく機能します。
私はいくつかのオプションを試しましたが、私は - このウェブサイト 、Fast_BertとTorchと非常にうまく機能しました。
try:
import apex
except Exception:
! git clone https://github.com/NVIDIA/apex.git
% cd apex
!pip install --no-cache-dir --global-option="--cpp_ext" --global-option="--cuda_ext" .
%cd ..
_
問題は!cd apex
です。代わりに%cd apex
を使用してください。