我试图让 TensorFlow 在 Azure 机器学习工作室的 python 脚本中运行。由于 TensorFlow 不是 Azure 机器学习工作室的一部分,我需要使用 zip 文件将其导入。我按照这里的说明进行操作:https ://stackoverflow.com/questions/44593469/how-can-certain-python-libraries-be-imported-in-azure-mllike-the-line-import-hu
但是,当尝试导入 TensorFlow 时,我得到:
ImportError: No module named _pywrap_tensorflow_internal
Failed to load the native TensorFlow runtime.
看起来 TensorFlow 不仅仅是一个 Python 库。似乎它需要一个本机库才能工作。听起来合乎逻辑,但 YouTube 上有这段视频表明它应该可以工作:https ://www.youtube.com/watch?v=SEvoZ6EnUpk
我的问题是:是否可以在 Azure 机器学习工作室的 python 脚本中运行 TensorFlow?如果是这样,怎么做?