web-dev-qa-db-ja.com

Google ColabにNVIDIA APEXをインストールする方法

私がしたことは公式の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.
 _
11
Tommy Yu

"!"を使用する代わりにcolabでcdコマンドの前に "% 'を使用してください

!git clone https://github.com/NVIDIA/apex
%cd apex
!pip install -v --no-cache-dir ./
 _

上記のコードはちょうどうまく機能します。

2
ashish_roopan

私はいくつかのオプションを試しましたが、私は - このウェブサイト 、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 ..
 _
1
Sam S

問題は!cd apexです。代わりに%cd apexを使用してください。

これを読む: https://stackoverflow.com/a/57212513/869046

0
Yahyaa