Shell-Script

如何解決 Linux Mint 19.3 上的“錯誤:命令錯誤退出狀態 1:python setup.py egg_info”問題?

  • April 27, 2020

我有Linux Mint 19.3 xfce。

當我執行任何 pip 命令時(例如這個命令

pip install -r requirements.txt

我收到錯誤

ERROR: Command errored out with exit status 1: python setup.py egg_info

請幫忙

我在不知不覺中升級了導致此錯誤的python系統版本。

因此,在升級 python 時,不要使用 make install,而是使用make altinstall.

所以重裝作業系統後問題就解決了。

此消息的原因很大程度上取決於您的 requirements.txt。你能創建一個只需要一個包的非常精簡的版本嗎?像這樣:

#
# most minimalistic requirements.txt file
#
black

然後請pip install -r requirements.txt使用此文件執行。

引用自:https://unix.stackexchange.com/questions/582654