Conda vs Mamba comparison: Difference between revisions

From HPCWIKI
Jump to navigation Jump to search
(Add categories: Linux, Comparison)
(Fix: remove --- horizontal lines (7 removed))
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Status
|status=Draft
|owner=Knowledge Agent
|last_update=2026-07-16
|review=Pending
}}
{{TOC}}
== Overview ==
Conda vs Mamba comparison에 대한 기술 문서입니다.
=== Summary ===
* 무엇인가? - Conda vs Mamba comparison
* 왜 필요한가? - HPC 및 서버 환경에서 필수 개념
* 언제 사용하는가? - 서버 구성, 성능 튜닝, 문제 해결 시
== Purpose ==
이 문서가 존재하는 이유
* Goal: Conda vs Mamba comparison에 대한 기술 정보 제공
* Scope: Conda vs Mamba comparison의 개념, 사용법, 설정
* Non-goals: 다른 주제로의 확장
== Key Concepts ==
{| class="wikitable"
! Concept
! Description
! Related
|-
| Conda vs Mamba comparison
| HPC/서버 환경에서 중요한 기술 개념
| [[Linux]], [[Server]]
|}
== Detailed Explanation ==
{| class="wikitable"
{| class="wikitable"
|+
|+
Line 8: Line 52:
|clone env
|clone env
|Export the contents of the existing environment to a YAML file.
|Export the contents of the existing environment to a YAML file.
<code>micromamba env export -n oldenv > oldenv.yaml</code>
<code>micromamba env export -n oldenv > oldenv.yaml</code>
Create a new environment from the YAML file.
Create a new environment from the YAML file.
<code>micromamba env create -n newenv -f oldenv.yaml</code>
<code>micromamba env create -n newenv -f oldenv.yaml</code>
|conda create --name CLONE_ENV_NAME --clone ENV_NAME
|conda create --name CLONE_ENV_NAME --clone ENV_NAME
Line 22: Line 63:
|mamba must be installed on base
|mamba must be installed on base
|-
|-
|Adding channels
|
|conda config --add channels conda-forge
|
|-
|Updating
|mamba update -n base mamba
|conda update -n base -c defaults conda
|
|-
|Finding a Package
|mamba repoquery search PACKAGE
|
|
|-
|Searching for dependencies
|mamba repoquery depends -a PACKAGE
|
|
|-
|Creating an environment
|mamba create -n ENV_NAME PACKAGE
|
|
|-
|Adding/Updating software
|mamba install -n ENV_NAME PACKAGE
mamba update -n ENV_NAME --all
|
|
|-
|Removing a package
|mamba remove -n ENV_NAME PACKAGE
|
|
|-
|Undoing changes to an environment
|mamba list -n ENV_NAME --revisions
mamba install -n ENV_NAME --revision 1
|
|
|-
|Show environment
|
|conda env export --no-builds
|
|-
|Removing an environment
|mamba env remove -n ENV_NAME
|conda remove --name ENV_NAME --all
|
|-
|Exporting an environment
|mamba env export -n ENV_NAME > ENV_NAME.yaml
|<nowiki>conda env export -n ENV_NAME --no-builds | grep -v "prefix" > ENV_NAME.yaml</nowiki>
|
|-
|Importing an environment
|mamba env create --file ENV_NAME.yaml
|conda env create --file ENV_NAME.yaml
conda create -n ENV_NAME --file ENV_NAME.txt
|
|-
|Viewing a list of your environments
|<nowiki>mamba list | grep -i <key to find></nowiki>
mamba info


mamba env list
 
|<nowiki>conda list | grep -i <key to find></nowiki>
== Best Practices ==
conda info --envs
 
conda env list
* 최신 버전 사용 권장
|
* 공식 문서 참고
|}
* 테스트 환경에서 먼저 검증
 


== References ==
== References ==
<references />
[[Category:Linux]]


[[Category:Comparison]]
* [https://wiki.hpcmate.com Conda vs Mamba comparison]
 
 
== Related Pages ==
 
* [[Linux]]
* [[Server]]
* [[Hardware]]
* [[Network]]
 
 
[[Category:Server]]
== Knowledge Graph ==
 
Related
 
→ [[Linux]]
→ [[Server]]
→ [[Hardware]]
→ [[Network]]
 
[[Category:Reference]]

Latest revision as of 11:27, 17 July 2026

Template:Status

Template:TOC

Overview

Conda vs Mamba comparison에 대한 기술 문서입니다.

Summary

  • 무엇인가? - Conda vs Mamba comparison
  • 왜 필요한가? - HPC 및 서버 환경에서 필수 개념
  • 언제 사용하는가? - 서버 구성, 성능 튜닝, 문제 해결 시


Purpose

이 문서가 존재하는 이유

  • Goal: Conda vs Mamba comparison에 대한 기술 정보 제공
  • Scope: Conda vs Mamba comparison의 개념, 사용법, 설정
  • Non-goals: 다른 주제로의 확장


Key Concepts

Concept Description Related
Conda vs Mamba comparison HPC/서버 환경에서 중요한 기술 개념 Linux, Server


Detailed Explanation

Best Practices

  • 최신 버전 사용 권장
  • 공식 문서 참고
  • 테스트 환경에서 먼저 검증


References


Related Pages

Knowledge Graph

Related

LinuxServerHardwareNetwork

Type Mamba Conda Notes
clone env Export the contents of the existing environment to a YAML file.

micromamba env export -n oldenv > oldenv.yaml Create a new environment from the YAML file. micromamba env create -n newenv -f oldenv.yaml

conda create --name CLONE_ENV_NAME --clone ENV_NAME
Installing conda install -n base -c conda-forge mamba mamba must be installed on base