安装出现:Pytest already satisfied 的解决办法

问题:

最近用cmd 进行安装pytest 命令:pip install pytest 的时候报错,一大串Requirement already satisfied
安装出现:Pytest already satisfied 的解决办法_第1张图片
百度了下才找到解决方法,先把解决方法记录一下,以备后续遇到同样问题参考
解决方法:1、在cmd中输入:pip install --target=d:\python\python37\lib\site-packages pytest
在" --target= " 加上安装路径,反正后面是接上\lib\site-packages就行。
安装出现:Pytest already satisfied 的解决办法_第2张图片
2、安装完成以候还会出现其他的错误,就加上国内镜像源 :pip install -i https://pypi.doubanio.com/simple/ --trusted-host pypi.doubanio.com --target=d:\python\python37\lib\site-packages pytest
安装出现:Pytest already satisfied 的解决办法_第3张图片3、关闭重启问题就解决了

你可能感兴趣的:(笔记,python)