Je suis tombé sur un problème connu avec TensorFlow 1.4 et Python 3.6, qui se manifeste par cette RuntimeWarning
:
compiletime version 3.5 of module 'tensorflow.python.framework.fast_tensor_util'
does not match runtime version 3.6
Je voudrais surmonter cette difficulté en installant la dernière tf-nightly
y tf-nightly-gpu
comme cela est actuellement recommandé. Jusqu'à présent, j'ai suivi instructions normales pour installer TensorFlow (sur macOS) comme ceci :
virtualenv --system-site-packages ~/tensorflow
source ~/tensorflow/bin/activate
(tensorflow)$ easy_install -U pip
(tensorflow)$ pip install --upgrade tensorflow
Quelles modifications (minimales) apporter à ces étapes pour qu'elles effectuent l'installation à partir de tf-nightly
y tf-nightly-gpu
?