我使用 conda 和环境 tensorflow 安装了 gpu tensorflow
source activate tensorflow
我尝试使用 cuda-10 和 tensorflow 2.0 重新安装它,
但之前的版本与网络版本存在冲突
,所以我想从环境中删除所有 tensorflow
我卸载它
pip uninstall tensorflow
conda remove tensorflow
但它保持导入它
导入 tensorflow 没有问题
我如何检查所有安装的 tensorflow 并将其删除?
答案1
您可能对 tensorflow-gpu 和 tensorflow 感到困惑。
请尝试以下步骤:
- 改变你的环境
source activate tensorflow
。 - 运行
pip freeze
以检查安装了哪些包。 - 如果发现已安装 tensorflow-gpu (或 tensorflow),请运行
pip uninstall tensorflow-gpu
并conda remove tensorflow-gpu
。
如果不起作用,请停用您的环境并再次执行相同的过程。