问题,之前都是在conda或低版本的python下创建虚拟环境,现在python升级至3.10后,想创建虚拟环境,再安装virtualenvwrapper后发现一直报错。
note: This error originates from a subprocess, and is likely not a problem with pip.
error: metadata-generation-failed
× Encountered error while generating package metadata.
╰─> See above for output.
note: This is an issue with the package mentioned above, not pip.
hint: See above for details.
image.png
解决方式
尝试方法一:安装virtualenvwrapper 报错,按网上的加sudo 仍未解决
sudo pip3 install virtualenvwrapper
然后再去官网上找该包,发现此包仅支持2,6~3.6的版本,所以放弃该方法。
尝试方法二: 直接用virtualenv (也可用 venv或pipenv)
# 安装virtualenv包
sudo pip3 install virtualenv
# 创建新环境,我的环境名为django_env
python3 -m venv django_env
# 激活新环境
source django_env/bin/activate
venv的过程与virtualenv差不多。
参考:
https://blog.csdn.net/lclfans1983/article/details/108256790
网友评论