服务器中指定python进行操作&安装apex包时出现问题ERROR: Command errored out with exit status 1: python setup.py egg_info

# 指定python解释器运行文件
/usr/bin/python3.8 test.py  --path food.txt
# 指定python 安装包
# 如提示Running pip install with root privileges is generally not a good idea. 
#       Try    `__main__.py install --user` instead.
# 就添加参数 --user
/usr/bin/python3.6 -m pip install -r --user requirements.txt 


另外还有一个warning

WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv 

这个需要为python创建虚拟环境,查询报错信息即可得到解决方案,而因为与后端的对接,暂时布处理。

在安装apex包时出现问题

首先我是使用git获取源文件,并且使用setup进行安装

出现报错,出现报错时需要仔细检查报错信息,而非直接上网查答案,别人的答案不一定准确

:Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
服务器中指定python进行操作&安装apex包时出现问题ERROR: Command errored out with exit status 1: python setup.py egg_info_第1张图片

 仔细检查发现是没有安装packaging包,安装后即报错:

服务器中指定python进行操作&安装apex包时出现问题ERROR: Command errored out with exit status 1: python setup.py egg_info_第2张图片

 原因为apex是需要cuda作为支持,发现没有即取消安装并报错。因为服务器没有gpu,所以放弃安装

你可能感兴趣的:(python,开发语言,linux)