ubuntu pip 安装/卸载 python2 的包的方法

电脑 pip 安装默认安装在了 python3 下面,不管系统默认的是 python2 还是 python3。

今天想装一个 python2 下面的 nltk 包,怎么都不了,用 pip install 显示安装成功,但是只能在 python3 中用,最后百度了一个博客发现了解决办法,安装 python2 的包输入下面的指令就可以:

sudo python2 -m pip install nltk

这个 nltk 是我要安装的包,若要按照别的包换成对应的名字即可

要卸载 python2 的包也只需要把 install 变成 uninstall 就可以:

sudo python2 -m pip uninstall nltk

 参考的博客:https://blog.csdn.net/qq_33278989/article/details/80371349

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