目录
pip install安装的时候在Preparing metadata (setup.py) ...卡住
ERROR: Can not execute `setup.py` since setuptools is not available in the build environment.
pip install安装的时候在Preparing metadata (setup.py) ...卡住
解决办法
在pip安装的时候添加--verbose
参数查看卡住的详细原因
pip install --verbose basicsr
ERROR: Can not execute `setup.py` since setuptools is not available in the build environment.
注意:此错误源于子流程,pip可能不是问题。
更新setuptools
pip install --upgrade setuptools
-
pip install