Ubuntu apt-get安装virtualenv失败处理一例
在Ubuntu里面安装virtualenv时出现如下提示:
guochongxin@xinu:~/xinu/python$ sudo apt-get install python-virtualenv
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
使用sudo apt-get -f install命令,执行后仍是一样提示,最后查到使用如下命令可以解决:
sudo aptitude -f install python-virtualenv
在出现的交互提示中,都是按Y进行确定处理,最终安装成功。
评论
发表评论