我正在尝试安装pip来安装针对python3.3的BeatutifulSoup4。Linux Mint 16
[127]manuel@manuel-X202E:~ > pip3.2 install beautifulsoup4
No command 'pip3.2' found, did you mean:
Command 'pip-3.2' from package 'python3-pip' (universe)
pip3.2: command not found
---------------------
[100]manuel@manuel-X202E:~ > sudo apt-get install python3-pip
Reading package lists... Done
Building dependency tree
Reading state information... Done
python3-pip is already the newest version.
----------------------
manuel@manuel-X202E:~ > pip-3.2 install beautifulsoup4
The program 'pip-3.2' is currently not installed. You can install it by typing:
sudo apt-get install python3-pip因此,包已安装,但未被检测到(我试图重新启动操作系统)
我也试过:
sudo apt-get purge python3-pip
sudo apt-get install python3-pip
sudo apt-get update
sudo apt-get check以及
sudo apt-get purge python3-pip
(reinstall via Synaptic)编辑:我终于解决了(使用dpkg)。问题是我应该用
pip3而不是
pip3-2发布于 2014-10-24 08:30:27
从您的问题中,我认为您的问题只是一个错误-正确的命令是pip-3.2,而不仅仅是pip3.2。
编辑:好吧,如果打字机不是主要的坏蛋,那我们试试别的吧.
1)卸载python3 3-pip
sudo apt-get purge python3-pip2)清洁一切:-)
sudo apt-get clean
sudo apt-get autoclean
sudo apt-get remove
sudo apt-get autoremove3)安装python3 3-pip,更新包列表并检查依赖项。
sudo apt-get install python3-pip
sudo apt-get update
sudo apt-get check4)如果不起作用,请使用Synaptic重新安装
5)如果你仍然没有运气,那就试试
dpkg -L python3-pip如果没有其他可启动的文件而不是pip-3.2,则查找/usr/bin中的文件。
https://unix.stackexchange.com/questions/163948
复制相似问题