安裝orange時發生錯誤

安裝orange時發生錯誤

我已經安裝了anaconda。我也將我的 python 更新到了最新版本。但是當我嘗試安裝 Orange 時,出現以下錯誤:

Collecting orange3
  Using cached Orange3-3.5.0.tar.gz
    Complete output from command python setup.py egg_info:
    Orange requires Python >= 3.4

    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-zWUMVm/orange3/

請告訴我如何解決它

答案1

Python 3 不會向後相容於 Python 2,因此,Python 2 安裝不會自動更新到 Python 3。

您可以做以下幾件事:

  1. 使用 Python 2 版本的套件。這是橘子對於Python 2。

  2. 安裝Python 3。python3Ubuntu 儲存庫中的軟體包,我相信可以與 Python 2 一起使用,python可執行檔運行 Python 2,python3可執行檔運行 Python 3。

您還應該確保您使用的其他 Python 套件(例如 Anaconda)與您決定使用的 Python 版本相符。

相關內容