轉載:https://blog.csdn.net/kudou1994/article/details/86735451python
服務器在訓練模型,另外一邊我在瞎胡亂搞不曉得咋個搞的,就不能使用GPU了。
python2.7:服務器
from tensorflow.python.client import device_lib print(device_lib.list_local_devices())
打算卸載原有的tensorflow從新安裝來解決。
踩了不少坑,也嘗試過強制安裝TF的方法,最後仍是不行。
最後懷疑是沒有卸載乾淨,又完徹底全的卸載了一遍,最後得以解決python2.7
conda uninstall tensorflow conda uninstall tensorflow-gpu
最後從新安裝tensorflow-gpu便可 #不須要安裝CPU版本的tensorflow.net
conda install tensorflow-gpu