查看当前pip位置
pip -V
查看所有pip位置
where pip
在使用pip时,无法确定是使用python还是conda中的pip
有两种解决方案,如下:
一、修改系统变量的优先级
例如想要优先使用python中的pip,只要将环境变量中python对应的路径提前到conda对应的路径之前即可
同理,将python的优先级高于conda
参考: https://blog.csdn.net/HOU_Zhe/article/details/107630786
二、修改命名
将python.exe重命名,避开与conda的矛盾
参考: https://blog.csdn.net/qq_39236499/article/details/107191335