docker镜像不提供tensorflow的更新版本。我该如何升级到0.12.0 cpu版本?
我尝试使用以下命令获取最新版本的cpu版本: docker run -it -p 8888:8888 -v / notebooks_proj b.gcr.io/tensorflow/tensorflow:latest-devel
但它是0.8.0版本。如何获得0.12.0码头工具?
答案 0 :(得分:1)
gcr.io和docker hub上的最新版本和最新版本标签应该都是最新的(目前为0.12.0-rc1)
对于gcr.io
class StoreController extends FOSRestController
{
private $entityMenus;
public function __construct( Array $entityMenus )
{
$this->entityMenus = $entityMenus;
}
给出0.12.0-rc1
对于码头集线器
docker run -it --rm gcr.io/tensorflow/tensorflow:latest-devel python -c "import tensorflow as tf; print(tf.__version__)"
给出0.12.0-rc1