venv questions

Chris Angelico rosuav at gmail.com
Mon Aug 29 23:09:22 EDT 2022


On Tue, 30 Aug 2022 at 12:59, gene heskett <gheskett at shentel.net> wrote:
>
> Greetings all;
>
> The command to setup a venv, "python -m venv venv" has no man page that
> I have
> found.
>

$ python3 -m venv --help
usage: venv [-h] [--system-site-packages] [--symlinks | --copies] [--clear]
            [--upgrade] [--without-pip] [--prompt PROMPT] [--upgrade-deps]
            ENV_DIR [ENV_DIR ...]

Creates virtual Python environments in one or more target directories.

positional arguments:
  ENV_DIR               A directory to create the environment in.

(chomp all the explanation of options)

ChrisA


More information about the Python-list mailing list