在通过pip install -U pip升级pip之后
运行pip命令会显示
1 2 |
$ pip /usr/bin/pip: No such file or directory |
通过命令查找pip位置
1 2 3 4 5 6 7 8 |
$ which pip /usr/local/bin/pip $ pip -su: /usr/bin/pip: No such file or directory $ type pip pip is hashed (/usr/bin/pip) |
发现pip升级之后的位置已经更改为/usr/local/bin/pip,但是pip的缓存地址依旧是/usr/bin/pip
解决方法很简单,通过如下命令清除缓存
1 |
$ hash -r |
清除缓存之后,pip命令就能使用了。
2 comments