错误: RuntimeError: Python 3.5 or later is required
问题:如何解决使用jupyter安装pip3时运行时的错误?
安装在系统上的python的Different版本:
$ python
python python2.7-config python3.4 python3.4m-config python3.6m-config python3m-config
python2 python2-config python3.4-config python3.6 python3-config python-config
python2.7 python3 python3.4m python3.6m python3m Version:
$ python3 --version
Python 3.4.3发布于 2020-07-07 04:36:29
原因:您看到这一点,因为pip 19.2有放弃对Python3.4的支持。
解决方案:尝试将pip降级到19.2以下。在我的例子中,由于我使用conda来管理我的环境,所以我不得不发出这个逗号:
conda install "pip<19.2" python=3.4https://askubuntu.com/questions/1213845
复制相似问题