0
$pip list
numpy(1.11.1)
我的numpy是最新的,我相信它可以用在python環境中。我的numpy是最新的,但TensorBoard說它是舊的
>>> import numpy
>>> print numpy.__version__
1.11.1
但是我用TensorBoard
$ tensorboard --logdir=/tmp/basic_rnn/logdir
它表明這個錯誤
RuntimeError: module compiled against API version 0xa but this version of numpy is 0x9
是什麼原因導致這個問題?
你打在頭上的釘!非常感謝你。我發現tensorflow環境連接了其他python環境。 – whitebear