ce que j'ai fait, c'est suivre les instructions sur le site officiel GitHub
!git clone https://github.com/NVIDIA/apex
!cd apex
!pip install -v --no-cache-dir ./
cela me donne l'erreur:
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.
Dans Colab au lieu d'utiliser "!" Utilisez "%" avant cd
commande
!git clone https://github.com/NVIDIA/apex
%cd apex
!pip install -v --no-cache-dir ./
Le code ci-dessus fonctionnera très bien.
J'ai essayé quelques options, mais j'ai aimé celui-ci ce site , qui a très bien fonctionné avec Fast_bert et 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 ..
Le problème est avec !cd apex
. Utilisation %cd apex
au lieu.
Lisez ceci: https://stackoverflow.com/a/57212513/869046