【发布时间】:2021-10-23 16:10:12
【问题描述】:
我正在尝试使用终端在另一台服务器上安装一个名为“mudes”的 Python 包。当我想使用安装它时
pip install mudes
或
pip3 install mudes
,我收到以下错误:
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-hn4hol_z/spacy/
我也用过
pip install --no-cache-dir mudes
,导致同样的错误和
pip3 install --upgrade setuptools --user python
,结果如下:
Requirement already up-to-date: setuptools in ./pythonProject/venv/lib/python3.6/site-packages
Collecting python
Could not find a version that satisfies the requirement python (from versions: )
No matching distribution found for python
我该如何解决这个问题?
【问题讨论】:
标签: python macos installation package remote-server