We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f69059 commit 0cc52fcCopy full SHA for 0cc52fc
pages/common/conda-update.md
@@ -0,0 +1,24 @@
1
+# conda update
2
+
3
+> Update packages within a conda environment, including conda itself.
4
+> More information: <https://docs.conda.io/projects/conda/en/latest/commands/update.html>.
5
6
+- Update all packages in the current environment:
7
8
+`conda update {{[--all|--update-all]}}`
9
10
+- Update a specific package in the current environment:
11
12
+`conda update {{package_name}}`
13
14
+- Update conda itself in the base environment:
15
16
+`conda update {{[-n|--name]}} base conda`
17
18
+- Update packages while ignoring pinned packages:
19
20
+`conda update --no-pin`
21
22
+- Update packages in offline mode:
23
24
+`conda update --offline`
0 commit comments