evo的安装方法,任意一条命令即可:
pip install evo --upgrade --no-binary evo
pip install evo --upgrade
发生 pip 版本低的错误,使用以下办法:
python -m pip install --upgrade pip
依然出错的情况下,使用最后的办法解决pip版本问题:
python -m pip install -U --force-reinstall pip
解决了pip版本问题,可能会遇到关于numpy的问题:
pandas 0.24.0 has requirement numpy>=1.12.0, but you’ll have
numpy 1.11.0 which is incompatible.
解决办法:这个问题似乎先解决下面的一个问题后 再次执行pip install --user evo --upgrade 就解决了
出现错误:
ERROR: Could not install packages due to an EnvironmentError: [Errno 13] 权限不够: ‘/usr/lib/python2.7/dist-packages/dateutil/relativedelta.pyc’
Consider using the--user
option or check the permissions.
在install后面加上option --user即可,解决办法:
pip install --user evo --upgrade --no-binary evo