【Python】複製一份 conda 環境的各種方式

JY的興趣行李箱
·
·
IPFS
·

使用 .yml 檔案
  • 將當前環境設置輸出為 environment.yml ,再用來創建配置一致的新環境
(base) ~$ conda activate current_env
(<meta charset="utf-8">current_env) ~$ conda env export > environment.yml
<meta charset="utf-8">(<meta charset="utf-8">current_env) ~$ conda deactivate
(base) ~$ conda env create -n new_env -f environment.yml
  • 更新現有環境
<meta charset="utf-8">(<meta charset="utf-8">current_env) ~$ conda env update -f <meta charset="utf-8">environment.yml --prune
使用 .txt 檔案
<meta charset="utf-8">(base) ~$ conda activate current_env
<meta charset="utf-8">(<meta charset="utf-8">current_env) ~$ conda list --explicit > spec_file.txt
<meta charset="utf-8">(<meta charset="utf-8">current_env) ~$ conda deactivate
(base) ~$ conda create -n new_env -f spec_file.txt

更多 conda 指令:

https://docs.conda.io/projects/conda/en/latest/_downloads/843d9e0198f2a193a3484886fa28163c/conda-cheatsheet.pdf

CC BY-NC-ND 2.0 授权

喜欢我的作品吗?别忘了给予支持与赞赏,让我知道在创作的路上有你陪伴,一起延续这份热忱!

JY的興趣行李箱一個數據分析師的個人興趣分享,走到哪寫到哪 可能是程式技能分享、綜藝點評、舞台/歌曲/樂曲/電影收藏、書摘、產業觀察等
  • 来自作者
  • 相关推荐

Git 協作不可不知的重要指令

【資料分析】認識統計顯著性|A/B Testing 觀測數值增減多少才是顯著有效?

【自然語言處理】基於語義角色標註的事件三元組抽取實作