当前位置:网站首页>Create and copy conda environment
Create and copy conda environment
2022-07-29 13:30:00 【athrunsunny】
一、 condaEnvironment creation and activation
conda create -n name python=3.8
conda activate name
其中的nameis the name of the created environment,python=3.8for this environmentpython版本.
二、 conda环境复制
① Copy local to local
conda create -n B --clone A
把本地的Aenvironment cloned intoB
② Copy the environment from the first computer to the other computer
The first step is to execute the command on the first computer
conda activate name# Activate the environment to be migrated
conda env export > name.yml # Export the migration file
The second step is performed on another computer,需要把name.ymlCopy to new computer,然后在该目录下执行命令
conda env create -f name.yml # 创建新的环境
边栏推荐
猜你喜欢
随机推荐
人脸合成效果媲美StyleGAN,而它是个自编码器
Interceptors and filters (3) @interface custom annotation interception
js进阶四(map、reduce、filter、sort、箭头函数、class继承、yield)
轻松学Pytorch-Pytorch可视化
C# autoCAD 几个经常用到的功能代码。
C# 1秒跑一个数字的展示,主要练习 事件相关内容
如何把Netflix数据集转换成Movielens格式?
xxl-job源码解析(技术分享)
mongo根据时间字段进行时间格式化并进行统计
年轻人开始“反大牌”,有钱也不买
DVWA全级别通关教程
Framework common annotation explanation
【微信小程序】一文解决button、input、image组件
How Navicat Connects to MySQL
nacos集群搭建
Sql文件导入数据库-保姆级教程
IDEA 数据库插件Database Navigator 插件
Windows系统Mysql8版本的安装教程
asyncawait和promise的区别
传奇版本添加npc修改增加npc方法以及配置参数教程







![[Mysql] LENGTH函数](/img/a1/112cac6b42f8c7abec7e4a6629dffd.png)

