当前位置:网站首页>CONDA creates, replicates, and shares virtual environments
CONDA creates, replicates, and shares virtual environments
2022-07-02 07:21:00 【lwgkzl】
Create a new virtual environment :
conda create --name env_name python=3.7
Copy an existing environment
conda create --name new_env_name --clone old_env_name
Sharing the environment
That is, export an environment as a configuration file , Reinstall this environment with this configuration file on another computer , Commonly used for environment migration
conda activate my_env_name # First go to the environment that needs to be shared
conda env export > my_env.yml # Secondly, export the environment as a configuration file
Then in other computers :
conda env create -f my_env.yml # Use this command to create a new environment , It contains all the installation packages of the previous environment
边栏推荐
猜你喜欢

Spark SQL task performance optimization (basic)

Ingress Controller 0.47.0的Yaml文件

如何高效开发一款微信小程序

ssm超市订单管理系统

The boss said: whoever wants to use double to define the amount of goods, just pack up and go

ORACLE EBS中消息队列fnd_msg_pub、fnd_message在PL/SQL中的应用

Classloader and parental delegation mechanism

Yaml file of ingress controller 0.47.0

【BERT,GPT+KG调研】Pretrain model融合knowledge的论文集锦

Proteus -- RS-232 dual computer communication
随机推荐
php中获取汉字拼音大写首字母
Check log4j problems using stain analysis
SSM laboratory equipment management
Agile development of software development pattern (scrum)
架构设计三原则
一个中年程序员学习中国近代史的小结
第一个快应用(quickapp)demo
Oracle EBS interface development - quick generation of JSON format data
spark sql任务性能优化(基础)
中年人的认知科普
【信息检索导论】第六章 词项权重及向量空间模型
读《敏捷整洁之道:回归本源》后感
Error in running test pyspark in idea2020
Oracle apex Ajax process + dy verification
Spark的原理解析
php中的数字金额转换大写数字
MySQL composite index with or without ID
使用MAME32K进行联机游戏
【论文介绍】R-Drop: Regularized Dropout for Neural Networks
使用Matlab实现:幂法、反幂法(原点位移)