pip3 install supervisor==3.3.0 WARNING: Running pip install with root privileges is generally not a good idea. Try `pip3 install --user` instead. Collecting supervisor==3.3.0 Downloading http://mirrors.tencentyun.com/pypi/packages/44/80/d28047d120bfcc8158b4e41127706731ee6a3419c661e0a858fb0e7c4b2d/supervisor-3.3.0.tar.gz (416kB) 100% |████████████████████████████████| 419kB 1.7MB/s Complete output from command python setup.py egg_info: Supervisor requires Python 2.4 or later but does not work on any version of Python 3. You are using version 3.6.8 (default, Apr 2 2020, 13:34:55) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)]. Please install using a supported version. ---------------------------------------- Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-iopil6hl/supervisor/
时间: 2023-09-18 17:08:27 浏览: 555
glove_python 包,window 版,直接解压 pip setup.py install 即可安装
看起来你的 Python 版本是 3.6.8,而 supervisor 3.3.0 只支持 Python 2.4 或更高版本的 Python 2.x。如果你想在 Python 3.x 中使用 supervisor,可以尝试安装 supervisor 4.0.0 或更高版本,它们支持 Python 3.x。
如果你仍然要安装 supervisor 3.3.0,可以考虑使用 Python 2.x 的环境,或者升级到 supervisor 4.0.0 或更高版本。如果你想继续安装 supervisor 3.3.0,可以尝试使用以下命令来安装 Python 2.x 版本:
```
sudo apt-get install python2.7
```
然后使用以下命令来安装 supervisor:
```
sudo python2.7 -m pip install supervisor==3.3.0
```
但请注意,Python 2.x 已经不再维护了,建议使用 Python 3.x。如果你能够使用 supervisor 4.0.0 或更高版本,建议使用 Python 3.x 环境来安装。
阅读全文