Are there any command options that can help me? #3290
Unanswered
liquanchen9
asked this question in
Q&A
Replies: 2 comments
-
Hi @liquanchen9 python setup.py bdist_egg --help :(
Common commands: (see '--help-commands' for more)
setup.py build will build the package underneath 'build/'
setup.py install will install the package
Global options:
--verbose (-v) run verbosely (default)
--quiet (-q) run quietly (turns verbosity off)
--dry-run (-n) don't actually do anything
--help (-h) show detailed help message
--no-user-cfg ignore pydistutils.cfg in your home directory
Options for 'bdist_egg' command:
--bdist-dir (-b) temporary directory for creating the distribution
--plat-name (-p) platform name to embed in generated filenames
(default: linux-x86_64)
--exclude-source-files remove all .py files from the generated egg
--keep-temp (-k) keep the pseudo-installation tree around after
creating the distribution archive
--dist-dir (-d) directory to put final built distributions in
--skip-build skip rebuilding everything (for testing/debugging)
usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: setup.py --help [cmd1 cmd2 ...]
or: setup.py --help-commands
or: setup.py cmd --help |
Beta Was this translation helpful? Give feedback.
0 replies
-
Yes, "cache_dir" is the command parameter of PIP
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I use "bdist_egg" command for project packaging, but I found that setting cache_dir has no effect.
Beta Was this translation helpful? Give feedback.
All reactions