在新打开的python项目时,无法运行,通过在终端pip安装相应的库,出现:Requirement already satisfied:
1. 命令行:pip install twisted
2.添加镜像安装地址: pip install twisted --trusted-host mirrors.aliyun.com,仍然无法解决问题:
3.查询后,发现,是因为在系统中已经在相关路径下安装该库,所以无法安装,只需要添加–target:目标路径即可。
pip install --trusted-host mirrors.aliyun.com --target=d:\anaconda\lib\site-packages (22.2.0) twisted
能够正常安装,问题解决!!!