首页 > 其他 > 详细

Dockerfile install miniconda

时间:2021-08-10 23:38:51      阅读:53      评论:0      收藏:0      [点我收藏+]

Dockerfile install miniconda:

?

RUN apt-get update
RUN apt-get install -y wget gcc g++
RUN apt-get install -y gnupg
RUN wget https://repo.anaconda.com/miniconda/Miniconda-3.6.0-Linux-x86_64.sh \
?&& bash ?Miniconda-3.6.0-Linux-x86_64.sh -b -p /miniconda \
?&& rm Miniconda-3.6.0-Linux-x86_64.sh
ENV PATH=/miniconda/bin:$PATH
RUN conda create -n py3 python=3.6.0 pip --yes
RUN /bin/bash -c ". activate py3 && pip install tensorflow-gpu numpy pillow requests"
ENV PATH=/miniconda/envs/py3/bin:$PATH

Dockerfile install miniconda

原文:https://blog.51cto.com/yangzhiming/3348215

(0)
(0)
   
举报
评论 一句话评论(0
分享档案
最新文章
教程昨日排行
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!