我有一个依赖关系中断的系统,但是当试图通过apt-get purge或dpkg --purge --force-all卸载它们时,errors were encountered while processing更具体地说,我有一个linux-image-extra包,它的linux-image依赖不再是可达到的。我安装了更多的内核,所以删除它不会有问题,但是卸载过程总是失败的。卸载时出现的错误:
sudo dpkg --purge --force-all lin
下面是dpkg -l "linux-image*“的输出。ii linux-image-3.2.0-24-generic 3.2.0-24.39 LinuxLinux kernel image for version 3.2.0 on 64 bit x86 SMP
ii linux-image-3.2.0-38-genericapt-get purge linux-
在Ubuntu14.04上,我安装了Anaconda,我使用它作为我的主要Python解释器。现在我想安装TensorFlow库,并通过Anaconda使用它。因此,我从foo.whl网站下载了相关的TensorFlow文件,然后运行pip install foo.whl。在此之后,我运行了pip freeze,它向我展示了tensorflow==0.7.1,表明它已成功安装。
但是,使用Anaconda解释器时,当我运行一个具有import tensorflow的Python文件时,它会告诉我ImportError: No module named 'tensorflow'。