This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author raulcd
Recipients raulcd
Date 2015-01-31.09:50:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1422697815.11.0.353784279673.issue23357@psf.upfronthosting.co.za>
In-reply-to
Content
Currently when you execute pyvenv the help message is wrong:

host@~  $ pyvenv
usage: venv [-h] [--system-site-packages] [--symlinks | --copies] [--clear]
            [--upgrade] [--without-pip]
            ENV_DIR [ENV_DIR ...]
venv: error: the following arguments are required: ENV_DIR

Based on the docs on https://docs.python.org/3/library/venv.html it should be:

host@~  $ pyvenv
usage: pyvenv [-h] [--system-site-packages] [--symlinks | --copies] [--clear]
              [--upgrade] [--without-pip]
              ENV_DIR [ENV_DIR ...]
pyvenv: error: the following arguments are required: ENV_DIR

Basically instead of saying usage venv it should say usage pyvenv but if you execute the module it should be venv:

host@~  $ python3.5 -m venv
usage: venv [-h] [--system-site-packages] [--symlinks | --copies] [--clear]
            [--upgrade] [--without-pip]
            ENV_DIR [ENV_DIR ...]
venv: error: the following arguments are required: ENV_DIR
History
Date User Action Args
2015-01-31 09:50:15raulcdsetrecipients: + raulcd
2015-01-31 09:50:15raulcdsetmessageid: <1422697815.11.0.353784279673.issue23357@psf.upfronthosting.co.za>
2015-01-31 09:50:15raulcdlinkissue23357 messages
2015-01-31 09:50:14raulcdcreate