Command “python setup.py egg_info” failed——完美解决
用 ubuntu 安装 django-mdeditor==0.1.13
时报错:
Command “python setup.py egg_info” failed with error code 1 in /tmp/pip-build-2XpM94/django-mdeditor/
有人说是setuptools
的版本太低,于是我镜像源下更新了一下: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --upgrade setuptools
完全没用
解决方法:pip3 install django-mdeditor==0.1.13
问题解决,之前安装 Django 也是这种报错,pip
换成 pip3
就完全解决了