Man page - pip3-config(1)
Packages contains this manual
- pip-wheel(1)
- pip3-wheel(1)
- pip-check(1)
- pip(1)
- pip3-show(1)
- pip3-config(1)
- pip3-lock(1)
- pip-help(1)
- pip3-install(1)
- pip-install(1)
- pip3-help(1)
- pip3-search(1)
- pip3-list(1)
- pip-freeze(1)
- pip3(1)
- pip3-index(1)
- pip-search(1)
- pip-cache(1)
- pip-show(1)
- pip-config(1)
- pip-list(1)
- pip3-cache(1)
- pip-hash(1)
- pip-debug(1)
- pip-uninstall(1)
- pip3-debug(1)
- pip3-freeze(1)
- pip3-hash(1)
- pip3-check(1)
- pip3-uninstall(1)
- pip-download(1)
- pip3-download(1)
apt-get install python3-pip
Manual
PIP3-CONFIG
NAMEDESCRIPTION
USAGE
OPTIONS
AUTHOR
COPYRIGHT
NAME
pip3-config - description of pip3 config command
DESCRIPTION
Manage local and global configuration.
Subcommands:
|
• |
list: List the active configuration (or from the file specified) |
|||
|
• |
edit: Edit the configuration file in an editor |
|||
|
• |
get: Get the value associated with command.option |
|||
|
• |
set: Set the command.option=value |
|||
|
• |
unset: Unset the value associated with command.option |
|||
|
• |
debug: List the configuration files and values defined under them |
Configuration keys should be dot separated command and option name, with the special prefix "global" affecting any command. For example, "pip config set global.index-url https://example.org/ " would configure the index url for all commands, but "pip config set download.timeout 10" would configure a 10 second timeout only for "pip download" commands.
If none of --user, --global and --site are passed, a virtual environment configuration file is used if one is active and the file exists. Otherwise, all modifications happen to the user file by default.
USAGE
python -m pip
config [<file-option>] list
python -m pip config [<file-option>] [--editor
<editor-path>] edit
python -m pip
config [<file-option>] get command.option
python -m pip config [<file-option>] set
command.option value
python -m pip config [<file-option>] unset
command.option
python -m pip config [<file-option>] debug
OPTIONS
--editor <editor>
Editor to use to edit the file. Uses VISUAL or EDITOR environment variables if not provided.
(environment variable: PIP_EDITOR )
--global
Use the system-wide configuration file only
(environment variable: PIP_GLOBAL )
|
--user |
Use the user configuration file only |
(environment variable: PIP_USER )
|
--site |
Use the current environment configuration file only |
(environment variable: PIP_SITE )
AUTHOR
pip developers
COPYRIGHT
The pip developers