步骤2:安装必要的依赖 安装一些必要的依赖包,以便允许apt通过HTTPS使用存储库: sudo apt install -y apt-transport-https ca-certificates curl gnupg lsb-release 步骤3:添加Docker的官方GPG密钥 下载并添加Docker的官方GPG密钥: curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor ...
curl -fsSL https://download.docker.com/linux/ubuntu/gpg|sudoapt-key add - 4、添加amd64的Docker的清华软件仓库源 1 2 3 sudoadd-apt-repository \ "deb [arch=amd64] https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/ubuntu\ $(lsb_release -cs) stable" 5、安装Docker 1 2 sudoapt updat...
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" sudo apt-get update 最后一步重点:不能直接安装最新版本的 docker!!!(否则可能会有一堆bug等着你) ...
"deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" 1. 2. 3. 4. 查看docker版本,如果不需要选择版本,可以跳过这步 apt-cache madison docker-ce 1. 安装docker apt-get install docker-ce 1. 启动服务 service docker start 1. 结束?你先看看命令行输入:docker ...
1、配置WSL2和安装Ubuntu,过程略 2、Ubuntu中安装依赖库 sudo apt update&&sudo apt upgrade sudo apt install apt-transport-https ca-certificates curl gnupg2 software-properties-common 1. 2. 3、配置Docker的GPG公钥 curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - ...
1.1.安装Docker 参考微软官方文档 https://docs.microsoft.com/zh-cn/windows/wsl/tutorials/wsl-containers 如果你只是为了Docker安装WSL2而不真正使用WSL2,到这里就结束了,接下来,你可以寻找Docker的使用教程,比如这个。 2.设置WSL2并安装Gnome 0.在境内使用Ubuntu时更换软件源可以极大提升效率。参见以下网页(排名不...
2.安装需要的包 sudo apt install apt-transport-https ca-certificates software-properties-common curl 3.添加 GPG 密钥,并添加 Docker-ce 软件源,这里还是以中国科技大学的 Docker-ce 源为例 curl-fsSL[https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg](https://mirrors.ustc.edu.cn/docker-ce/...
WSL2及Ubuntu部署 基于Ubuntu的Docker安装 Docker中文环境配置 VeighNa Docker安装 虚拟环境部署 1.1. 检查Windows操作系统内部版本,在命令提示符(CMD)中运行winver命令,会弹出如下图的窗口: 请检查【操作系统内部版本】,确保内部版本在19041及以上。若版本过低,推荐使用Windows官方更新助手,更新过程中,系统可能会多次重启...
WSL-2,Ubuntu-20.04,Linux-NVIDIA-WSL-CUDA-11.6(CUDA版本Linux需要低于Wins) Docker_Desktop-Win11-20.10.17 MobaXterm 免安装版(终端软件,用于ubuntu可视化) 我的推荐顺序是Win11-->WSL2-->Ubuntu-->Docker,因为Ubuntu和Docker都依赖于WSL2,但事实上因为GPU调用问题返工了许多次:< ...
WSL2(windowssubsystem forlinux2)是微软推出的Windows上的Linux子系统,部署WSL2你将可以在windows上使用Linux系统,其使用体验无限接近与直接安装一台Linux系统。这里我部署WSL2主要是为了想在windows上使用docker。这里实现的过程大致是: 开启windows上的haper-V虚拟化 ...