• 确保已经安装好虚拟机,且Linux系统为Ubuntu18.04版本,如下图所示:
•本文使用cmder连接Linux虚拟机进行操作!!(需要的小伙伴可根据下述博客进行连接操作!!!): 通过cmder使用SSH协议远程连接Linux服务器 虚拟机 •cmder连接虚拟机成功后如下图所示:
•卸载旧版本(建议以前有无安装docker都执行一下!!)
sudo apt-get remove docker docker-engine docker.io containerd runc •更新 apt (软件包)索引 sudo apt-get update •安装 apt 依赖包,用于通过HTTPS来获取Docker仓库 •下述命令建议直接在虚拟机中直接运行!!!不要使用各种远程连接终端软件!! sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ gnupg \ lsb-release •添加Docker官方的GPG密钥 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" •更新 apt 包索引,并安装最新版的Docker ce版(社区版) sudo apt-get update sudo apt-get install docker-ce docker-ce-cli containerd.io 安装特定版本的Docker •查看可安装的Docker版本 apt-cache madison docker-ce •选择自己需要的版本进行安装 sudo apt-get install docker-ce=<第二列数据!!> docker-ce-cli=<VERSION_STRING> containerd.io sudo apt-get install docker-ce=5:20.10.7~3-0~ubuntu-bionic docker-ce-cli=<VERSION_STRING> containerd.io •尖括号中填写的是上述图片中的第二列数据!!! •使用下述命令查看docker版本号 docker -v docker --version •通过运行hello-world 镜像验证 Docker是否已正确安装 sudo docker run hello-world •出现上述图片中的内容!!即为Docker ce版已经安装成功!!! •小伙伴可以开启Docker的学习之旅了!!!! Ubuntu18.04安装Docker安装装备安装Docker操作步骤安装特定版本的Docker安装装备 •确保已经安装好虚拟机,且Linux系统为Ubuntu18.04版本,如下图所示:安装Docker •本文使用cmder连接Linux虚拟机进行操作!!(需要的小伙伴可根据下述博客进行连接操作!!!):通过cmder使用SSH协议远 https://docs.docker.com/ 使用Ubuntu安装: https://docs.docker.com/engine/install/ubuntu/ 使用官方提供的安装方式直接安装: 添加 Docker 的官方 GPG 密钥: 使用以下命令设置存储库: 安装 Docker 引擎 更新包索引:apt 安装 Docker Engine、containerd 和 Docker Compose。 特定版本: sudo apt-get update 安装包允许apt通过HTTPS使用仓库 sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common 添加Docker官方GPG key curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 设置Docker稳定版 要安装Docker在Ubuntu 18.04上,需要您按照以下步骤操作: 1. 首先,您需要确保您的系统是最新的,使用以下命令来安装所有可用的更新:sudo apt-get update2. 然后,您需要安装所需的软件包,使用以下命令:sudo apt-get install apt-transport-https ca-certificates curl software-properties-common3. 接下来,您需要添加Docker的官方GPG密钥,使用以下命令:curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -4. 接下来,您需要添加存储库,使用以下命令:sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"5. 现在,您可以更新软件包索引,使用以下命令:sudo apt-get update6. 最后,您可以安装Docker CE,使用以下命令:sudo apt-get install docker-ce 解决错误:graphviz.backend.ExecutableNotFound: failed to execute [‘dot‘, ‘-Tpng‘, ‘-O‘, ‘test.gv‘](图文并茂版) LQXDYZXmyj: 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 哈哈哈,博主本人的问题,下次一定注意描述清楚!! 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 向他一样rap: 好像又可以了 执行第一个命令就可以了 后面都没执行 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 向他一样rap: 不行哦 , 执行jupyter contrib nbextension install --user usage: jupyter [-h] [--version] [--config-dir] [--data-dir] [--runtime-dir] [--paths] [--json] [--debug] [subcommand] Jupyter: Interactive Computing positional arguments: subcommand the subcommand to launch options: -h, --help show this help message and exit --version show the versions of core jupyter packages and exit --config-dir show Jupyter config dir --data-dir show Jupyter data dir --runtime-dir show Jupyter runtime dir --paths show all Jupyter paths. Add --json for machine-readable format. --json output paths as machine-readable json --debug output debug information about paths Available subcommands: bundlerextension console dejavu execute kernel kernelspec lab labextension labhub migrate nbclassic nbconvert nbextension notebook qtconsole run script server serverextension troubleshoot trust Jupyter command `jupyter-contrib` not found. python虚拟环境的安装与配置(究极详细易理解版!!!) 答案000: 变量名一定为:WORKON_HOME •变量值一定为:虚拟环境安装位置的具体路径(自己新建任意一个文件夹的位置,文件夹名自己定义) 第一步操作完之后,虚拟环境该是会安装在C盘
•更新 apt (软件包)索引
sudo apt-get update •安装 apt 依赖包,用于通过HTTPS来获取Docker仓库 •下述命令建议直接在虚拟机中直接运行!!!不要使用各种远程连接终端软件!! sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ gnupg \ lsb-release •添加Docker官方的GPG密钥 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" •更新 apt 包索引,并安装最新版的Docker ce版(社区版) sudo apt-get update sudo apt-get install docker-ce docker-ce-cli containerd.io 安装特定版本的Docker •查看可安装的Docker版本 apt-cache madison docker-ce •选择自己需要的版本进行安装 sudo apt-get install docker-ce=<第二列数据!!> docker-ce-cli=<VERSION_STRING> containerd.io sudo apt-get install docker-ce=5:20.10.7~3-0~ubuntu-bionic docker-ce-cli=<VERSION_STRING> containerd.io •尖括号中填写的是上述图片中的第二列数据!!! •使用下述命令查看docker版本号 docker -v docker --version •通过运行hello-world 镜像验证 Docker是否已正确安装 sudo docker run hello-world •出现上述图片中的内容!!即为Docker ce版已经安装成功!!! •小伙伴可以开启Docker的学习之旅了!!!! Ubuntu18.04安装Docker安装装备安装Docker操作步骤安装特定版本的Docker安装装备 •确保已经安装好虚拟机,且Linux系统为Ubuntu18.04版本,如下图所示:安装Docker •本文使用cmder连接Linux虚拟机进行操作!!(需要的小伙伴可根据下述博客进行连接操作!!!):通过cmder使用SSH协议远 https://docs.docker.com/ 使用Ubuntu安装: https://docs.docker.com/engine/install/ubuntu/ 使用官方提供的安装方式直接安装: 添加 Docker 的官方 GPG 密钥: 使用以下命令设置存储库: 安装 Docker 引擎 更新包索引:apt 安装 Docker Engine、containerd 和 Docker Compose。 特定版本: sudo apt-get update 安装包允许apt通过HTTPS使用仓库 sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common 添加Docker官方GPG key curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 设置Docker稳定版 要安装Docker在Ubuntu 18.04上,需要您按照以下步骤操作: 1. 首先,您需要确保您的系统是最新的,使用以下命令来安装所有可用的更新:sudo apt-get update2. 然后,您需要安装所需的软件包,使用以下命令:sudo apt-get install apt-transport-https ca-certificates curl software-properties-common3. 接下来,您需要添加Docker的官方GPG密钥,使用以下命令:curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -4. 接下来,您需要添加存储库,使用以下命令:sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"5. 现在,您可以更新软件包索引,使用以下命令:sudo apt-get update6. 最后,您可以安装Docker CE,使用以下命令:sudo apt-get install docker-ce 解决错误:graphviz.backend.ExecutableNotFound: failed to execute [‘dot‘, ‘-Tpng‘, ‘-O‘, ‘test.gv‘](图文并茂版) LQXDYZXmyj: 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 哈哈哈,博主本人的问题,下次一定注意描述清楚!! 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 向他一样rap: 好像又可以了 执行第一个命令就可以了 后面都没执行 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 向他一样rap: 不行哦 , 执行jupyter contrib nbextension install --user usage: jupyter [-h] [--version] [--config-dir] [--data-dir] [--runtime-dir] [--paths] [--json] [--debug] [subcommand] Jupyter: Interactive Computing positional arguments: subcommand the subcommand to launch options: -h, --help show this help message and exit --version show the versions of core jupyter packages and exit --config-dir show Jupyter config dir --data-dir show Jupyter data dir --runtime-dir show Jupyter runtime dir --paths show all Jupyter paths. Add --json for machine-readable format. --json output paths as machine-readable json --debug output debug information about paths Available subcommands: bundlerextension console dejavu execute kernel kernelspec lab labextension labhub migrate nbclassic nbconvert nbextension notebook qtconsole run script server serverextension troubleshoot trust Jupyter command `jupyter-contrib` not found. python虚拟环境的安装与配置(究极详细易理解版!!!) 答案000: 变量名一定为:WORKON_HOME •变量值一定为:虚拟环境安装位置的具体路径(自己新建任意一个文件夹的位置,文件夹名自己定义) 第一步操作完之后,虚拟环境该是会安装在C盘
•安装 apt 依赖包,用于通过HTTPS来获取Docker仓库 •下述命令建议直接在虚拟机中直接运行!!!不要使用各种远程连接终端软件!!
下述命令建议直接在虚拟机中直接运行!!!不要使用各种远程连接终端软件!!
sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ gnupg \ lsb-release •添加Docker官方的GPG密钥 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" •更新 apt 包索引,并安装最新版的Docker ce版(社区版) sudo apt-get update sudo apt-get install docker-ce docker-ce-cli containerd.io 安装特定版本的Docker •查看可安装的Docker版本 apt-cache madison docker-ce •选择自己需要的版本进行安装 sudo apt-get install docker-ce=<第二列数据!!> docker-ce-cli=<VERSION_STRING> containerd.io sudo apt-get install docker-ce=5:20.10.7~3-0~ubuntu-bionic docker-ce-cli=<VERSION_STRING> containerd.io •尖括号中填写的是上述图片中的第二列数据!!! •使用下述命令查看docker版本号 docker -v docker --version •通过运行hello-world 镜像验证 Docker是否已正确安装 sudo docker run hello-world •出现上述图片中的内容!!即为Docker ce版已经安装成功!!! •小伙伴可以开启Docker的学习之旅了!!!! Ubuntu18.04安装Docker安装装备安装Docker操作步骤安装特定版本的Docker安装装备 •确保已经安装好虚拟机,且Linux系统为Ubuntu18.04版本,如下图所示:安装Docker •本文使用cmder连接Linux虚拟机进行操作!!(需要的小伙伴可根据下述博客进行连接操作!!!):通过cmder使用SSH协议远 https://docs.docker.com/ 使用Ubuntu安装: https://docs.docker.com/engine/install/ubuntu/ 使用官方提供的安装方式直接安装: 添加 Docker 的官方 GPG 密钥: 使用以下命令设置存储库: 安装 Docker 引擎 更新包索引:apt 安装 Docker Engine、containerd 和 Docker Compose。 特定版本: sudo apt-get update 安装包允许apt通过HTTPS使用仓库 sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common 添加Docker官方GPG key curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 设置Docker稳定版 要安装Docker在Ubuntu 18.04上,需要您按照以下步骤操作: 1. 首先,您需要确保您的系统是最新的,使用以下命令来安装所有可用的更新:sudo apt-get update2. 然后,您需要安装所需的软件包,使用以下命令:sudo apt-get install apt-transport-https ca-certificates curl software-properties-common3. 接下来,您需要添加Docker的官方GPG密钥,使用以下命令:curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -4. 接下来,您需要添加存储库,使用以下命令:sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"5. 现在,您可以更新软件包索引,使用以下命令:sudo apt-get update6. 最后,您可以安装Docker CE,使用以下命令:sudo apt-get install docker-ce 解决错误:graphviz.backend.ExecutableNotFound: failed to execute [‘dot‘, ‘-Tpng‘, ‘-O‘, ‘test.gv‘](图文并茂版) LQXDYZXmyj: 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 哈哈哈,博主本人的问题,下次一定注意描述清楚!! 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 向他一样rap: 好像又可以了 执行第一个命令就可以了 后面都没执行 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 向他一样rap: 不行哦 , 执行jupyter contrib nbextension install --user usage: jupyter [-h] [--version] [--config-dir] [--data-dir] [--runtime-dir] [--paths] [--json] [--debug] [subcommand] Jupyter: Interactive Computing positional arguments: subcommand the subcommand to launch options: -h, --help show this help message and exit --version show the versions of core jupyter packages and exit --config-dir show Jupyter config dir --data-dir show Jupyter data dir --runtime-dir show Jupyter runtime dir --paths show all Jupyter paths. Add --json for machine-readable format. --json output paths as machine-readable json --debug output debug information about paths Available subcommands: bundlerextension console dejavu execute kernel kernelspec lab labextension labhub migrate nbclassic nbconvert nbextension notebook qtconsole run script server serverextension troubleshoot trust Jupyter command `jupyter-contrib` not found. python虚拟环境的安装与配置(究极详细易理解版!!!) 答案000: 变量名一定为:WORKON_HOME •变量值一定为:虚拟环境安装位置的具体路径(自己新建任意一个文件夹的位置,文件夹名自己定义) 第一步操作完之后,虚拟环境该是会安装在C盘
•添加Docker官方的GPG密钥
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" •更新 apt 包索引,并安装最新版的Docker ce版(社区版) sudo apt-get update sudo apt-get install docker-ce docker-ce-cli containerd.io 安装特定版本的Docker •查看可安装的Docker版本 apt-cache madison docker-ce •选择自己需要的版本进行安装 sudo apt-get install docker-ce=<第二列数据!!> docker-ce-cli=<VERSION_STRING> containerd.io sudo apt-get install docker-ce=5:20.10.7~3-0~ubuntu-bionic docker-ce-cli=<VERSION_STRING> containerd.io •尖括号中填写的是上述图片中的第二列数据!!! •使用下述命令查看docker版本号 docker -v docker --version •通过运行hello-world 镜像验证 Docker是否已正确安装 sudo docker run hello-world •出现上述图片中的内容!!即为Docker ce版已经安装成功!!! •小伙伴可以开启Docker的学习之旅了!!!! Ubuntu18.04安装Docker安装装备安装Docker操作步骤安装特定版本的Docker安装装备 •确保已经安装好虚拟机,且Linux系统为Ubuntu18.04版本,如下图所示:安装Docker •本文使用cmder连接Linux虚拟机进行操作!!(需要的小伙伴可根据下述博客进行连接操作!!!):通过cmder使用SSH协议远 https://docs.docker.com/ 使用Ubuntu安装: https://docs.docker.com/engine/install/ubuntu/ 使用官方提供的安装方式直接安装: 添加 Docker 的官方 GPG 密钥: 使用以下命令设置存储库: 安装 Docker 引擎 更新包索引:apt 安装 Docker Engine、containerd 和 Docker Compose。 特定版本: sudo apt-get update 安装包允许apt通过HTTPS使用仓库 sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common 添加Docker官方GPG key curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 设置Docker稳定版 要安装Docker在Ubuntu 18.04上,需要您按照以下步骤操作: 1. 首先,您需要确保您的系统是最新的,使用以下命令来安装所有可用的更新:sudo apt-get update2. 然后,您需要安装所需的软件包,使用以下命令:sudo apt-get install apt-transport-https ca-certificates curl software-properties-common3. 接下来,您需要添加Docker的官方GPG密钥,使用以下命令:curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -4. 接下来,您需要添加存储库,使用以下命令:sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"5. 现在,您可以更新软件包索引,使用以下命令:sudo apt-get update6. 最后,您可以安装Docker CE,使用以下命令:sudo apt-get install docker-ce 解决错误:graphviz.backend.ExecutableNotFound: failed to execute [‘dot‘, ‘-Tpng‘, ‘-O‘, ‘test.gv‘](图文并茂版) LQXDYZXmyj: 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 哈哈哈,博主本人的问题,下次一定注意描述清楚!! 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 向他一样rap: 好像又可以了 执行第一个命令就可以了 后面都没执行 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 向他一样rap: 不行哦 , 执行jupyter contrib nbextension install --user usage: jupyter [-h] [--version] [--config-dir] [--data-dir] [--runtime-dir] [--paths] [--json] [--debug] [subcommand] Jupyter: Interactive Computing positional arguments: subcommand the subcommand to launch options: -h, --help show this help message and exit --version show the versions of core jupyter packages and exit --config-dir show Jupyter config dir --data-dir show Jupyter data dir --runtime-dir show Jupyter runtime dir --paths show all Jupyter paths. Add --json for machine-readable format. --json output paths as machine-readable json --debug output debug information about paths Available subcommands: bundlerextension console dejavu execute kernel kernelspec lab labextension labhub migrate nbclassic nbconvert nbextension notebook qtconsole run script server serverextension troubleshoot trust Jupyter command `jupyter-contrib` not found. python虚拟环境的安装与配置(究极详细易理解版!!!) 答案000: 变量名一定为:WORKON_HOME •变量值一定为:虚拟环境安装位置的具体路径(自己新建任意一个文件夹的位置,文件夹名自己定义) 第一步操作完之后,虚拟环境该是会安装在C盘
•设置稳定版仓库
sudo add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) \ stable" •更新 apt 包索引,并安装最新版的Docker ce版(社区版) sudo apt-get update sudo apt-get install docker-ce docker-ce-cli containerd.io 安装特定版本的Docker •查看可安装的Docker版本 apt-cache madison docker-ce •选择自己需要的版本进行安装 sudo apt-get install docker-ce=<第二列数据!!> docker-ce-cli=<VERSION_STRING> containerd.io sudo apt-get install docker-ce=5:20.10.7~3-0~ubuntu-bionic docker-ce-cli=<VERSION_STRING> containerd.io •尖括号中填写的是上述图片中的第二列数据!!! •使用下述命令查看docker版本号 docker -v docker --version •通过运行hello-world 镜像验证 Docker是否已正确安装 sudo docker run hello-world •出现上述图片中的内容!!即为Docker ce版已经安装成功!!! •小伙伴可以开启Docker的学习之旅了!!!! Ubuntu18.04安装Docker安装装备安装Docker操作步骤安装特定版本的Docker安装装备 •确保已经安装好虚拟机,且Linux系统为Ubuntu18.04版本,如下图所示:安装Docker •本文使用cmder连接Linux虚拟机进行操作!!(需要的小伙伴可根据下述博客进行连接操作!!!):通过cmder使用SSH协议远 https://docs.docker.com/ 使用Ubuntu安装: https://docs.docker.com/engine/install/ubuntu/ 使用官方提供的安装方式直接安装: 添加 Docker 的官方 GPG 密钥: 使用以下命令设置存储库: 安装 Docker 引擎 更新包索引:apt 安装 Docker Engine、containerd 和 Docker Compose。 特定版本: sudo apt-get update 安装包允许apt通过HTTPS使用仓库 sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common 添加Docker官方GPG key curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 设置Docker稳定版 要安装Docker在Ubuntu 18.04上,需要您按照以下步骤操作: 1. 首先,您需要确保您的系统是最新的,使用以下命令来安装所有可用的更新:sudo apt-get update2. 然后,您需要安装所需的软件包,使用以下命令:sudo apt-get install apt-transport-https ca-certificates curl software-properties-common3. 接下来,您需要添加Docker的官方GPG密钥,使用以下命令:curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -4. 接下来,您需要添加存储库,使用以下命令:sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"5. 现在,您可以更新软件包索引,使用以下命令:sudo apt-get update6. 最后,您可以安装Docker CE,使用以下命令:sudo apt-get install docker-ce 解决错误:graphviz.backend.ExecutableNotFound: failed to execute [‘dot‘, ‘-Tpng‘, ‘-O‘, ‘test.gv‘](图文并茂版) LQXDYZXmyj: 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 哈哈哈,博主本人的问题,下次一定注意描述清楚!! 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 向他一样rap: 好像又可以了 执行第一个命令就可以了 后面都没执行 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 向他一样rap: 不行哦 , 执行jupyter contrib nbextension install --user usage: jupyter [-h] [--version] [--config-dir] [--data-dir] [--runtime-dir] [--paths] [--json] [--debug] [subcommand] Jupyter: Interactive Computing positional arguments: subcommand the subcommand to launch options: -h, --help show this help message and exit --version show the versions of core jupyter packages and exit --config-dir show Jupyter config dir --data-dir show Jupyter data dir --runtime-dir show Jupyter runtime dir --paths show all Jupyter paths. Add --json for machine-readable format. --json output paths as machine-readable json --debug output debug information about paths Available subcommands: bundlerextension console dejavu execute kernel kernelspec lab labextension labhub migrate nbclassic nbconvert nbextension notebook qtconsole run script server serverextension troubleshoot trust Jupyter command `jupyter-contrib` not found. python虚拟环境的安装与配置(究极详细易理解版!!!) 答案000: 变量名一定为:WORKON_HOME •变量值一定为:虚拟环境安装位置的具体路径(自己新建任意一个文件夹的位置,文件夹名自己定义) 第一步操作完之后,虚拟环境该是会安装在C盘
•更新 apt 包索引,并安装最新版的Docker ce版(社区版)
sudo apt-get update sudo apt-get install docker-ce docker-ce-cli containerd.io 安装特定版本的Docker •查看可安装的Docker版本 apt-cache madison docker-ce •选择自己需要的版本进行安装 sudo apt-get install docker-ce=<第二列数据!!> docker-ce-cli=<VERSION_STRING> containerd.io sudo apt-get install docker-ce=5:20.10.7~3-0~ubuntu-bionic docker-ce-cli=<VERSION_STRING> containerd.io •尖括号中填写的是上述图片中的第二列数据!!! •使用下述命令查看docker版本号 docker -v docker --version •通过运行hello-world 镜像验证 Docker是否已正确安装 sudo docker run hello-world •出现上述图片中的内容!!即为Docker ce版已经安装成功!!! •小伙伴可以开启Docker的学习之旅了!!!! Ubuntu18.04安装Docker安装装备安装Docker操作步骤安装特定版本的Docker安装装备 •确保已经安装好虚拟机,且Linux系统为Ubuntu18.04版本,如下图所示:安装Docker •本文使用cmder连接Linux虚拟机进行操作!!(需要的小伙伴可根据下述博客进行连接操作!!!):通过cmder使用SSH协议远 https://docs.docker.com/ 使用Ubuntu安装: https://docs.docker.com/engine/install/ubuntu/ 使用官方提供的安装方式直接安装: 添加 Docker 的官方 GPG 密钥: 使用以下命令设置存储库: 安装 Docker 引擎 更新包索引:apt 安装 Docker Engine、containerd 和 Docker Compose。 特定版本: sudo apt-get update 安装包允许apt通过HTTPS使用仓库 sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common 添加Docker官方GPG key curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 设置Docker稳定版 要安装Docker在Ubuntu 18.04上,需要您按照以下步骤操作: 1. 首先,您需要确保您的系统是最新的,使用以下命令来安装所有可用的更新:sudo apt-get update2. 然后,您需要安装所需的软件包,使用以下命令:sudo apt-get install apt-transport-https ca-certificates curl software-properties-common3. 接下来,您需要添加Docker的官方GPG密钥,使用以下命令:curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -4. 接下来,您需要添加存储库,使用以下命令:sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"5. 现在,您可以更新软件包索引,使用以下命令:sudo apt-get update6. 最后,您可以安装Docker CE,使用以下命令:sudo apt-get install docker-ce 解决错误:graphviz.backend.ExecutableNotFound: failed to execute [‘dot‘, ‘-Tpng‘, ‘-O‘, ‘test.gv‘](图文并茂版) LQXDYZXmyj: 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 哈哈哈,博主本人的问题,下次一定注意描述清楚!! 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 向他一样rap: 好像又可以了 执行第一个命令就可以了 后面都没执行 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 向他一样rap: 不行哦 , 执行jupyter contrib nbextension install --user usage: jupyter [-h] [--version] [--config-dir] [--data-dir] [--runtime-dir] [--paths] [--json] [--debug] [subcommand] Jupyter: Interactive Computing positional arguments: subcommand the subcommand to launch options: -h, --help show this help message and exit --version show the versions of core jupyter packages and exit --config-dir show Jupyter config dir --data-dir show Jupyter data dir --runtime-dir show Jupyter runtime dir --paths show all Jupyter paths. Add --json for machine-readable format. --json output paths as machine-readable json --debug output debug information about paths Available subcommands: bundlerextension console dejavu execute kernel kernelspec lab labextension labhub migrate nbclassic nbconvert nbextension notebook qtconsole run script server serverextension troubleshoot trust Jupyter command `jupyter-contrib` not found. python虚拟环境的安装与配置(究极详细易理解版!!!) 答案000: 变量名一定为:WORKON_HOME •变量值一定为:虚拟环境安装位置的具体路径(自己新建任意一个文件夹的位置,文件夹名自己定义) 第一步操作完之后,虚拟环境该是会安装在C盘
•查看可安装的Docker版本
apt-cache madison docker-ce •选择自己需要的版本进行安装 sudo apt-get install docker-ce=<第二列数据!!> docker-ce-cli=<VERSION_STRING> containerd.io sudo apt-get install docker-ce=5:20.10.7~3-0~ubuntu-bionic docker-ce-cli=<VERSION_STRING> containerd.io •尖括号中填写的是上述图片中的第二列数据!!! •使用下述命令查看docker版本号 docker -v docker --version •通过运行hello-world 镜像验证 Docker是否已正确安装 sudo docker run hello-world •出现上述图片中的内容!!即为Docker ce版已经安装成功!!! •小伙伴可以开启Docker的学习之旅了!!!! Ubuntu18.04安装Docker安装装备安装Docker操作步骤安装特定版本的Docker安装装备 •确保已经安装好虚拟机,且Linux系统为Ubuntu18.04版本,如下图所示:安装Docker •本文使用cmder连接Linux虚拟机进行操作!!(需要的小伙伴可根据下述博客进行连接操作!!!):通过cmder使用SSH协议远 https://docs.docker.com/ 使用Ubuntu安装: https://docs.docker.com/engine/install/ubuntu/ 使用官方提供的安装方式直接安装: 添加 Docker 的官方 GPG 密钥: 使用以下命令设置存储库: 安装 Docker 引擎 更新包索引:apt 安装 Docker Engine、containerd 和 Docker Compose。 特定版本: sudo apt-get update 安装包允许apt通过HTTPS使用仓库 sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common 添加Docker官方GPG key curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 设置Docker稳定版 要安装Docker在Ubuntu 18.04上,需要您按照以下步骤操作: 1. 首先,您需要确保您的系统是最新的,使用以下命令来安装所有可用的更新:sudo apt-get update2. 然后,您需要安装所需的软件包,使用以下命令:sudo apt-get install apt-transport-https ca-certificates curl software-properties-common3. 接下来,您需要添加Docker的官方GPG密钥,使用以下命令:curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -4. 接下来,您需要添加存储库,使用以下命令:sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"5. 现在,您可以更新软件包索引,使用以下命令:sudo apt-get update6. 最后,您可以安装Docker CE,使用以下命令:sudo apt-get install docker-ce 解决错误:graphviz.backend.ExecutableNotFound: failed to execute [‘dot‘, ‘-Tpng‘, ‘-O‘, ‘test.gv‘](图文并茂版) LQXDYZXmyj: 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 哈哈哈,博主本人的问题,下次一定注意描述清楚!! 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 向他一样rap: 好像又可以了 执行第一个命令就可以了 后面都没执行 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 向他一样rap: 不行哦 , 执行jupyter contrib nbextension install --user usage: jupyter [-h] [--version] [--config-dir] [--data-dir] [--runtime-dir] [--paths] [--json] [--debug] [subcommand] Jupyter: Interactive Computing positional arguments: subcommand the subcommand to launch options: -h, --help show this help message and exit --version show the versions of core jupyter packages and exit --config-dir show Jupyter config dir --data-dir show Jupyter data dir --runtime-dir show Jupyter runtime dir --paths show all Jupyter paths. Add --json for machine-readable format. --json output paths as machine-readable json --debug output debug information about paths Available subcommands: bundlerextension console dejavu execute kernel kernelspec lab labextension labhub migrate nbclassic nbconvert nbextension notebook qtconsole run script server serverextension troubleshoot trust Jupyter command `jupyter-contrib` not found. python虚拟环境的安装与配置(究极详细易理解版!!!) 答案000: 变量名一定为:WORKON_HOME •变量值一定为:虚拟环境安装位置的具体路径(自己新建任意一个文件夹的位置,文件夹名自己定义) 第一步操作完之后,虚拟环境该是会安装在C盘
apt-cache madison docker-ce •选择自己需要的版本进行安装
•选择自己需要的版本进行安装
sudo apt-get install docker-ce=<第二列数据!!> docker-ce-cli=<VERSION_STRING> containerd.io sudo apt-get install docker-ce=5:20.10.7~3-0~ubuntu-bionic docker-ce-cli=<VERSION_STRING> containerd.io •尖括号中填写的是上述图片中的第二列数据!!! •使用下述命令查看docker版本号 docker -v docker --version •通过运行hello-world 镜像验证 Docker是否已正确安装 sudo docker run hello-world •出现上述图片中的内容!!即为Docker ce版已经安装成功!!! •小伙伴可以开启Docker的学习之旅了!!!! Ubuntu18.04安装Docker安装装备安装Docker操作步骤安装特定版本的Docker安装装备 •确保已经安装好虚拟机,且Linux系统为Ubuntu18.04版本,如下图所示:安装Docker •本文使用cmder连接Linux虚拟机进行操作!!(需要的小伙伴可根据下述博客进行连接操作!!!):通过cmder使用SSH协议远 https://docs.docker.com/ 使用Ubuntu安装: https://docs.docker.com/engine/install/ubuntu/ 使用官方提供的安装方式直接安装: 添加 Docker 的官方 GPG 密钥: 使用以下命令设置存储库: 安装 Docker 引擎 更新包索引:apt 安装 Docker Engine、containerd 和 Docker Compose。 特定版本: sudo apt-get update 安装包允许apt通过HTTPS使用仓库 sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common 添加Docker官方GPG key curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 设置Docker稳定版 要安装Docker在Ubuntu 18.04上,需要您按照以下步骤操作: 1. 首先,您需要确保您的系统是最新的,使用以下命令来安装所有可用的更新:sudo apt-get update2. 然后,您需要安装所需的软件包,使用以下命令:sudo apt-get install apt-transport-https ca-certificates curl software-properties-common3. 接下来,您需要添加Docker的官方GPG密钥,使用以下命令:curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -4. 接下来,您需要添加存储库,使用以下命令:sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"5. 现在,您可以更新软件包索引,使用以下命令:sudo apt-get update6. 最后,您可以安装Docker CE,使用以下命令:sudo apt-get install docker-ce 解决错误:graphviz.backend.ExecutableNotFound: failed to execute [‘dot‘, ‘-Tpng‘, ‘-O‘, ‘test.gv‘](图文并茂版) LQXDYZXmyj: 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 哈哈哈,博主本人的问题,下次一定注意描述清楚!! 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 向他一样rap: 好像又可以了 执行第一个命令就可以了 后面都没执行 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 向他一样rap: 不行哦 , 执行jupyter contrib nbextension install --user usage: jupyter [-h] [--version] [--config-dir] [--data-dir] [--runtime-dir] [--paths] [--json] [--debug] [subcommand] Jupyter: Interactive Computing positional arguments: subcommand the subcommand to launch options: -h, --help show this help message and exit --version show the versions of core jupyter packages and exit --config-dir show Jupyter config dir --data-dir show Jupyter data dir --runtime-dir show Jupyter runtime dir --paths show all Jupyter paths. Add --json for machine-readable format. --json output paths as machine-readable json --debug output debug information about paths Available subcommands: bundlerextension console dejavu execute kernel kernelspec lab labextension labhub migrate nbclassic nbconvert nbextension notebook qtconsole run script server serverextension troubleshoot trust Jupyter command `jupyter-contrib` not found. python虚拟环境的安装与配置(究极详细易理解版!!!) 答案000: 变量名一定为:WORKON_HOME •变量值一定为:虚拟环境安装位置的具体路径(自己新建任意一个文件夹的位置,文件夹名自己定义) 第一步操作完之后,虚拟环境该是会安装在C盘
sudo apt-get install docker-ce=<第二列数据!!> docker-ce-cli=<VERSION_STRING> containerd.io sudo apt-get install docker-ce=5:20.10.7~3-0~ubuntu-bionic docker-ce-cli=<VERSION_STRING> containerd.io •尖括号中填写的是上述图片中的第二列数据!!! •使用下述命令查看docker版本号
•尖括号中填写的是上述图片中的第二列数据!!!
尖括号中填写的是上述图片中的第二列数据!!!
•使用下述命令查看docker版本号
docker -v docker --version •通过运行hello-world 镜像验证 Docker是否已正确安装 sudo docker run hello-world •出现上述图片中的内容!!即为Docker ce版已经安装成功!!! •小伙伴可以开启Docker的学习之旅了!!!! Ubuntu18.04安装Docker安装装备安装Docker操作步骤安装特定版本的Docker安装装备 •确保已经安装好虚拟机,且Linux系统为Ubuntu18.04版本,如下图所示:安装Docker •本文使用cmder连接Linux虚拟机进行操作!!(需要的小伙伴可根据下述博客进行连接操作!!!):通过cmder使用SSH协议远 https://docs.docker.com/ 使用Ubuntu安装: https://docs.docker.com/engine/install/ubuntu/ 使用官方提供的安装方式直接安装: 添加 Docker 的官方 GPG 密钥: 使用以下命令设置存储库: 安装 Docker 引擎 更新包索引:apt 安装 Docker Engine、containerd 和 Docker Compose。 特定版本: sudo apt-get update 安装包允许apt通过HTTPS使用仓库 sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common 添加Docker官方GPG key curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 设置Docker稳定版 要安装Docker在Ubuntu 18.04上,需要您按照以下步骤操作: 1. 首先,您需要确保您的系统是最新的,使用以下命令来安装所有可用的更新:sudo apt-get update2. 然后,您需要安装所需的软件包,使用以下命令:sudo apt-get install apt-transport-https ca-certificates curl software-properties-common3. 接下来,您需要添加Docker的官方GPG密钥,使用以下命令:curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -4. 接下来,您需要添加存储库,使用以下命令:sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"5. 现在,您可以更新软件包索引,使用以下命令:sudo apt-get update6. 最后,您可以安装Docker CE,使用以下命令:sudo apt-get install docker-ce 解决错误:graphviz.backend.ExecutableNotFound: failed to execute [‘dot‘, ‘-Tpng‘, ‘-O‘, ‘test.gv‘](图文并茂版) LQXDYZXmyj: 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 哈哈哈,博主本人的问题,下次一定注意描述清楚!! 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 向他一样rap: 好像又可以了 执行第一个命令就可以了 后面都没执行 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 向他一样rap: 不行哦 , 执行jupyter contrib nbextension install --user usage: jupyter [-h] [--version] [--config-dir] [--data-dir] [--runtime-dir] [--paths] [--json] [--debug] [subcommand] Jupyter: Interactive Computing positional arguments: subcommand the subcommand to launch options: -h, --help show this help message and exit --version show the versions of core jupyter packages and exit --config-dir show Jupyter config dir --data-dir show Jupyter data dir --runtime-dir show Jupyter runtime dir --paths show all Jupyter paths. Add --json for machine-readable format. --json output paths as machine-readable json --debug output debug information about paths Available subcommands: bundlerextension console dejavu execute kernel kernelspec lab labextension labhub migrate nbclassic nbconvert nbextension notebook qtconsole run script server serverextension troubleshoot trust Jupyter command `jupyter-contrib` not found. python虚拟环境的安装与配置(究极详细易理解版!!!) 答案000: 变量名一定为:WORKON_HOME •变量值一定为:虚拟环境安装位置的具体路径(自己新建任意一个文件夹的位置,文件夹名自己定义) 第一步操作完之后,虚拟环境该是会安装在C盘
docker -v docker --version •通过运行hello-world 镜像验证 Docker是否已正确安装
•通过运行hello-world 镜像验证 Docker是否已正确安装
sudo docker run hello-world •出现上述图片中的内容!!即为Docker ce版已经安装成功!!! •小伙伴可以开启Docker的学习之旅了!!!! Ubuntu18.04安装Docker安装装备安装Docker操作步骤安装特定版本的Docker安装装备 •确保已经安装好虚拟机,且Linux系统为Ubuntu18.04版本,如下图所示:安装Docker •本文使用cmder连接Linux虚拟机进行操作!!(需要的小伙伴可根据下述博客进行连接操作!!!):通过cmder使用SSH协议远 https://docs.docker.com/ 使用Ubuntu安装: https://docs.docker.com/engine/install/ubuntu/ 使用官方提供的安装方式直接安装: 添加 Docker 的官方 GPG 密钥: 使用以下命令设置存储库: 安装 Docker 引擎 更新包索引:apt 安装 Docker Engine、containerd 和 Docker Compose。 特定版本: sudo apt-get update 安装包允许apt通过HTTPS使用仓库 sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common 添加Docker官方GPG key curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 设置Docker稳定版 要安装Docker在Ubuntu 18.04上,需要您按照以下步骤操作: 1. 首先,您需要确保您的系统是最新的,使用以下命令来安装所有可用的更新:sudo apt-get update2. 然后,您需要安装所需的软件包,使用以下命令:sudo apt-get install apt-transport-https ca-certificates curl software-properties-common3. 接下来,您需要添加Docker的官方GPG密钥,使用以下命令:curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -4. 接下来,您需要添加存储库,使用以下命令:sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"5. 现在,您可以更新软件包索引,使用以下命令:sudo apt-get update6. 最后,您可以安装Docker CE,使用以下命令:sudo apt-get install docker-ce 解决错误:graphviz.backend.ExecutableNotFound: failed to execute [‘dot‘, ‘-Tpng‘, ‘-O‘, ‘test.gv‘](图文并茂版) LQXDYZXmyj: 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 哈哈哈,博主本人的问题,下次一定注意描述清楚!! 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 向他一样rap: 好像又可以了 执行第一个命令就可以了 后面都没执行 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 向他一样rap: 不行哦 , 执行jupyter contrib nbextension install --user usage: jupyter [-h] [--version] [--config-dir] [--data-dir] [--runtime-dir] [--paths] [--json] [--debug] [subcommand] Jupyter: Interactive Computing positional arguments: subcommand the subcommand to launch options: -h, --help show this help message and exit --version show the versions of core jupyter packages and exit --config-dir show Jupyter config dir --data-dir show Jupyter data dir --runtime-dir show Jupyter runtime dir --paths show all Jupyter paths. Add --json for machine-readable format. --json output paths as machine-readable json --debug output debug information about paths Available subcommands: bundlerextension console dejavu execute kernel kernelspec lab labextension labhub migrate nbclassic nbconvert nbextension notebook qtconsole run script server serverextension troubleshoot trust Jupyter command `jupyter-contrib` not found. python虚拟环境的安装与配置(究极详细易理解版!!!) 答案000: 变量名一定为:WORKON_HOME •变量值一定为:虚拟环境安装位置的具体路径(自己新建任意一个文件夹的位置,文件夹名自己定义) 第一步操作完之后,虚拟环境该是会安装在C盘
sudo docker run hello-world •出现上述图片中的内容!!即为Docker ce版已经安装成功!!! •小伙伴可以开启Docker的学习之旅了!!!! Ubuntu18.04安装Docker安装装备安装Docker操作步骤安装特定版本的Docker安装装备 •确保已经安装好虚拟机,且Linux系统为Ubuntu18.04版本,如下图所示:安装Docker •本文使用cmder连接Linux虚拟机进行操作!!(需要的小伙伴可根据下述博客进行连接操作!!!):通过cmder使用SSH协议远 https://docs.docker.com/ 使用Ubuntu安装: https://docs.docker.com/engine/install/ubuntu/ 使用官方提供的安装方式直接安装: 添加 Docker 的官方 GPG 密钥: 使用以下命令设置存储库: 安装 Docker 引擎 更新包索引:apt 安装 Docker Engine、containerd 和 Docker Compose。 特定版本: sudo apt-get update 安装包允许apt通过HTTPS使用仓库 sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common 添加Docker官方GPG key curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 设置Docker稳定版 要安装Docker在Ubuntu 18.04上,需要您按照以下步骤操作: 1. 首先,您需要确保您的系统是最新的,使用以下命令来安装所有可用的更新:sudo apt-get update2. 然后,您需要安装所需的软件包,使用以下命令:sudo apt-get install apt-transport-https ca-certificates curl software-properties-common3. 接下来,您需要添加Docker的官方GPG密钥,使用以下命令:curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -4. 接下来,您需要添加存储库,使用以下命令:sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"5. 现在,您可以更新软件包索引,使用以下命令:sudo apt-get update6. 最后,您可以安装Docker CE,使用以下命令:sudo apt-get install docker-ce
•出现上述图片中的内容!!即为Docker ce版已经安装成功!!! •小伙伴可以开启Docker的学习之旅了!!!!
解决错误:graphviz.backend.ExecutableNotFound: failed to execute [‘dot‘, ‘-Tpng‘, ‘-O‘, ‘test.gv‘](图文并茂版) LQXDYZXmyj: 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 哈哈哈,博主本人的问题,下次一定注意描述清楚!! 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 向他一样rap: 好像又可以了 执行第一个命令就可以了 后面都没执行 解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版) 向他一样rap: 不行哦 , 执行jupyter contrib nbextension install --user usage: jupyter [-h] [--version] [--config-dir] [--data-dir] [--runtime-dir] [--paths] [--json] [--debug] [subcommand] Jupyter: Interactive Computing positional arguments: subcommand the subcommand to launch options: -h, --help show this help message and exit --version show the versions of core jupyter packages and exit --config-dir show Jupyter config dir --data-dir show Jupyter data dir --runtime-dir show Jupyter runtime dir --paths show all Jupyter paths. Add --json for machine-readable format. --json output paths as machine-readable json --debug output debug information about paths Available subcommands: bundlerextension console dejavu execute kernel kernelspec lab labextension labhub migrate nbclassic nbconvert nbextension notebook qtconsole run script server serverextension troubleshoot trust Jupyter command `jupyter-contrib` not found. python虚拟环境的安装与配置(究极详细易理解版!!!) 答案000: 变量名一定为:WORKON_HOME •变量值一定为:虚拟环境安装位置的具体路径(自己新建任意一个文件夹的位置,文件夹名自己定义) 第一步操作完之后,虚拟环境该是会安装在C盘