调用了一个pytorch的项目,结果里面要用英伟达的apex,https://github.com/NVIDIA/apex
看的有点不明白,好在有个网友建议
也可以直接下载文件夹 import https://github.com/nvidia/apex#__NO_LINK_PROXY__
或者
直接git clone https://www.github.com/nvidia/apex 下载在当前项目目录下
或者,比较难成功
git clone https://www.github.com/nvidia/apex
cd apex
python setup.py install [--cuda_ext] [--cpp_ext]
解决: Linux – git: command not found
出错原因:服务器没有安装GIT,所以导致出错。
解决方法:
Centos下使用:yum install git -y 或者 yum install -y git
Ubuntu/Debian下使用 : apt-get install git
-y