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.
- Loading branch information
Showing
11 changed files
with
42 additions
and
36 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,6 @@ | |
'pip', | ||
'index', | ||
'share', | ||
'launch', | ||
'build', | ||
'clone' | ||
] | ||
|
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,17 +1,11 @@ | ||
Build a package from source. (EXPERIMENTAL) | ||
Build a package from recipe. (ADVANCED) For examples of recipes, see: https://github.com/ContinuumIO/conda-recipes | ||
|
||
**usage**: ``conda build [-h] [--git | --tar | --zip | --svn | --dir] [-n NAME | -p PREFIX] URL`` | ||
**usage**: ``conda build [-h] [-s] [-t] PATH [PATH ...]`` | ||
|
||
*URL* | ||
name of source (url, tarball, path, etc...) | ||
*PATH* | ||
path to recipe directory | ||
|
||
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) | ||
-h, --help show this help message and exit | ||
-s, --source only obtain the source (but don't build) | ||
-t, --test test package (assumes package is already build) |
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
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,12 +1,14 @@ | ||
Call pip and create a conda package in an environment. (ADVANCED) | ||
Call pip and create a conda package in an environment. (DEPRECATED) | ||
|
||
**usage**: ``conda pip [-h] [-n NAME | -p PREFIX] name [name ...]`` | ||
**usage**: ``conda pip [-h] [-n NAME | -p PREFIX] [--yes] [--dry-run] name [name ...]`` | ||
|
||
*name* | ||
name of package to pip install | ||
name of package to pip install | ||
|
||
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) | ||
--yes do not ask for confirmation | ||
--dry-run only display what would have been done |
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