forked from conda/conda
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated scrape_help.py and conda command pages.
- Loading branch information
Showing
14 changed files
with
107 additions
and
31 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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,17 @@ | ||
Build a package from source. (EXPERIMENTAL) | ||
|
||
**usage**: ``conda build [-h] [--git | --tar | --zip | --svn | --dir] [-n NAME | -p PREFIX] URL`` | ||
|
||
*URL* | ||
name of source (url, tarball, path, etc...) | ||
|
||
optional arguments: | ||
-h, --help show this help message and exit | ||
--git build from git url | ||
--tar build from local source tarball | ||
--zip build from local source zipfile | ||
--svn build from svn | ||
--dir build from local source directory | ||
-n NAME, --name NAME name of environment (directory in ROOT_DIR/envs) | ||
-p PREFIX, --prefix PREFIX | ||
full path to environment prefix (default: ROOT_DIR) |
This file contains 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
This file contains 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
This file contains 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
This file contains 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 |
---|---|---|
@@ -1,11 +1,10 @@ | ||
Display information about current conda install. | ||
|
||
**usage**: ``conda info [-h] [-a | -e | --license | --locations | -s]`` | ||
**usage**: ``conda info [-h] [-a | -e | --license | -s]`` | ||
|
||
optional arguments: | ||
-h, --help show this help message and exit | ||
-a, --all show location, license, and system information. | ||
-a, --all show all information, (environments, license, and system information. | ||
-e, --envs list all known conda environments. | ||
--license display information about local conda licenses list | ||
--locations list known locations for conda environments. | ||
-s, --system list PATH and PYTHONPATH environments for debugging purposes |
This file contains 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
This file contains 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,12 @@ | ||
Launch an application (EXPERIMENTAL) | ||
|
||
**usage**: ``conda launch [-h] [-n NAME | -p PREFIX] package_spec`` | ||
|
||
*package_spec* | ||
application package specification | ||
|
||
optional arguments: | ||
-h, --help show this help message and exit | ||
-n NAME, --name NAME name of environment (directory in ROOT_DIR/envs) | ||
-p PREFIX, --prefix PREFIX | ||
full path to environment prefix (default: ROOT_DIR) |
This file contains 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
This file contains 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
This file contains 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
This file contains 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,24 @@ | ||
Remove a list of packages from a specified conda environment. | ||
Normally, only the specified package is removed, and not the packages | ||
|
||
**usage**: ``conda remove [-h] [--yes] [--dry-run] [--all] [--features] [-n NAME | -p PREFIX] [-q] [package_name [package_name ...]] | ||
|
||
Remove a list of packages from a specified conda environment. | ||
Normally, only the specified package is removed, and not the packages`` | ||
|
||
*package_name* | ||
package names to remove from environment | ||
|
||
optional arguments: | ||
-h, --help show this help message and exit | ||
--yes do not ask for confirmation | ||
--dry-run only display what would have been done | ||
--all remove all packages, i.e. the entire environment | ||
--features remove features (instead of packages) | ||
-n NAME, --name NAME name of environment (directory in ROOT_DIR/envs) | ||
-p PREFIX, --prefix PREFIX | ||
full path to environment prefix (default: ROOT_DIR) | ||
-q, --quiet do not display progress bar | ||
|
||
examples: | ||
conda remove -n myenv scipy |
This file contains 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
This file contains 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