mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-23 00:02:47 +00:00
Update cheatsheets
This commit is contained in:
25
tldr/conda-remove
Normal file
25
tldr/conda-remove
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# conda remove
|
||||
|
||||
> Remove packages from a conda environment.
|
||||
> More information: <https://docs.conda.io/projects/conda/en/latest/commands/remove.html>.
|
||||
|
||||
- Remove `scipy` from the currently active environment:
|
||||
|
||||
`conda remove scipy`
|
||||
|
||||
- Remove a list of packages from the specified environment:
|
||||
|
||||
`conda remove {{[-n|--name]}} {{environment_name}} {{package1 package2 ...}}`
|
||||
|
||||
- Remove all packages and the environment itself:
|
||||
|
||||
`conda remove {{[-n|--name]}} {{environment_name}} --all`
|
||||
|
||||
- Remove all packages, but keep the environment:
|
||||
|
||||
`conda remove {{[-n|--name]}} {{environment_name}} --all --keep-env`
|
||||
Reference in New Issue
Block a user