我在远程服务器上使用anaconda设置了虚拟环境。该环境基于Python3.7并使用pip安装了TensorFlow。 python解释器在调用TensorFlow函数Session()时返回系统错误。
>>> import tensorflow as tf
>>> sess = tf.Session()
这会产生以下错误:
2019-05-08 16:56:05.239001: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 AVX512F FMA
terminate called after throwing an instance of 'std::system_error'
what(): Resource temporarily unavailable
Aborted (core dumped)
任何有助于弄清这种行为原因的帮助都将非常有用! 预先感谢。