-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
conda-{activate, clean, compare}: add page. conda-create: add prefix … #18051
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Managor
merged 40 commits into
tldr-pages:main
from
oleksii-kulyk:add-conda-activate.clean.compare
Sep 17, 2025
Merged
Changes from 32 commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
8c13ae8
conda-{activate, clean, compare}: add page. conda-create: add prefix …
oleksii-kulyk 54bb9be
Merge branch 'main' into add-conda-activate.clean.compare
oleksii-kulyk fda2e88
Update pages/common/conda-create.md
oleksii-kulyk 0b28a68
Update pages/common/conda-create.md
oleksii-kulyk 7fd6c41
Update pages/common/conda-create.md
oleksii-kulyk aa939c2
Update pages/common/conda-create.md
oleksii-kulyk 61287ba
Update pages/common/conda-create.md
oleksii-kulyk 2128f95
Update pages/common/conda-clean.md
oleksii-kulyk d519260
Update pages/common/conda-clean.md
oleksii-kulyk c865a45
Update pages/common/conda-clean.md
oleksii-kulyk 39beba7
Update pages/common/conda-clean.md
oleksii-kulyk 8c97682
Update pages/common/conda-activate.md
oleksii-kulyk 64d1d33
Update pages/common/conda-compare.md
oleksii-kulyk 7ef43e1
Update pages/common/conda-compare.md
oleksii-kulyk 81ce9d9
Update pages/common/conda-compare.md
oleksii-kulyk 7c2b33d
Update pages/common/conda-clean.md
oleksii-kulyk b2c195b
Merge branch 'main' into add-conda-activate.clean.compare
oleksii-kulyk 16b1d31
Update pages/common/conda-create.md
oleksii-kulyk 93a0c01
Update pages/common/conda-create.md
oleksii-kulyk 3a1bde2
Update pages/common/conda-create.md
oleksii-kulyk 4e20ee5
Update pages/common/conda-compare.md
oleksii-kulyk f1252b0
Update pages/common/conda-compare.md
oleksii-kulyk bc6609c
Update pages/common/conda-clean.md
oleksii-kulyk 7f56e32
Update pages/common/conda-activate.md
oleksii-kulyk ca69809
Update pages/common/conda-activate.md
oleksii-kulyk 7c70f1b
Update pages/common/conda-activate.md
oleksii-kulyk 3e18d48
Update pages/common/conda-activate.md
oleksii-kulyk 06cc780
Update pages/common/conda-create.md
oleksii-kulyk 97f56d9
Update pages/common/conda-activate.md
oleksii-kulyk 40e6172
Update pages/common/conda-clean.md
oleksii-kulyk 482fb25
Update pages/common/conda-clean.md
oleksii-kulyk 39d7735
Merge branch 'main' into add-conda-activate.clean.compare
oleksii-kulyk 19a9466
Fix formatting in conda-create.md
oleksii-kulyk e114064
Merge branch 'main' into add-conda-activate.clean.compare
oleksii-kulyk 14e56e8
Merge branch 'main' into add-conda-activate.clean.compare
oleksii-kulyk 87e796e
Update pages/common/conda-clean.md
oleksii-kulyk 636960c
Update pages/common/conda-activate.md
oleksii-kulyk 248afbb
Update pages/common/conda-activate.md
oleksii-kulyk fd19675
Merge branch 'main' into add-conda-activate.clean.compare
oleksii-kulyk f70afc6
Merge branch 'main' into add-conda-activate.clean.compare
oleksii-kulyk File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# conda activate | ||
|
||
> Activate a conda environment. | ||
> See also: `conda deactivate` to deactivate a conda environment. | ||
> More information: <https://docs.conda.io/projects/conda/en/stable/dev-guide/deep-dives/activation.html>. | ||
|
||
- Activate an existing environment named `myenv`: | ||
|
||
`conda activate myenv` | ||
|
||
- Activate an existing environment located at custom path: | ||
|
||
`conda activate {{path/to/myenv}}` | ||
|
||
- Stack `myenv2` environment on top of a previous environment making libraries/commands/variables from both accessible: | ||
|
||
`conda activate --stack myenv2` | ||
|
||
- Start a clean environment `myenv3` without stacking it making previous environment libraries/commands/variables not accessible: | ||
|
||
`conda activate --no-stack myenv3` | ||
oleksii-kulyk marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
||
- Display help: | ||
|
||
`conda activate {{[-h|--help]}}` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# conda clean | ||
|
||
> Delete temporary or unused files: index cache, lock files, unused cache packages, tarballs, and log files. | ||
> More information: <https://docs.conda.io/projects/conda/en/stable/commands/clean.html>. | ||
|
||
- Delete all temporary or unused files verbosely and say yes to all confirmations: | ||
|
||
`conda clean {{[-avy|--all --verbose --yes]}}` | ||
|
||
- Delete only index cache, tarballs, and log files: | ||
|
||
`conda clean {{[-itl|--index-cache --tarballs --logfiles]}}` | ||
|
||
- Delete only temporary [c]ache files that could not be deleted earlier due to being in use: | ||
|
||
`conda clean {{[-c|--tempfiles]}} {{path/to/tempfiles}}` | ||
|
||
- Delete only unused packages. Might delete packages installed with softlinks: | ||
|
||
`conda clean {{[-p|--packages]}}` | ||
|
||
- Force delete all writable packages. More broad than the `[-a|--all]` option. Will delete packages installed with softlinks: | ||
oleksii-kulyk marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
||
`conda clean {{[-f|--force-pkgs-dirs]}}` | ||
|
||
- Display help: | ||
|
||
`conda clean {{[-h|--help]}}` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# conda compare | ||
|
||
> Compare packages between conda environments. | ||
> More information: <https://docs.conda.io/projects/conda/en/stable/commands/compare.html>. | ||
|
||
- Compare packages in the current directory to packages from the file `file.yml`: | ||
|
||
`conda compare file.yml` | ||
|
||
- Compare packages in environment named `myenv` to packages from the file `file.yml`: | ||
|
||
`conda compare {{[-n|--name]}} myenv {{path/to/file.yml}}` | ||
|
||
- Compare packages in environment `myenv` at custom path (i.e. prefix) to packages from the file `file.yml`: | ||
|
||
`conda compare {{[-p|--prefix]}} {{path/to/myenv}} {{path/to/file.yml}}` | ||
|
||
- Display help: | ||
|
||
`conda create {{[-h|--help]}}` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.