@@ -342,7 +342,7 @@ pip allows you to set all command line option defaults in a standard ini
342
342
style config file.
343
343
344
344
The names and locations of the configuration files vary slightly across
345
- platforms. You may have per-user, per-virtualenv or site-wide (shared amongst
345
+ platforms. You may have per-user, per-virtualenv or global (shared amongst
346
346
all users) configuration:
347
347
348
348
**Per-user **:
@@ -369,7 +369,7 @@ variable ``PIP_CONFIG_FILE``.
369
369
* On Unix and macOS the file is :file: `$VIRTUAL_ENV/pip.conf `
370
370
* On Windows the file is: :file: `%VIRTUAL_ENV%\\ pip.ini `
371
371
372
- **Site-wide **:
372
+ **Global **:
373
373
374
374
* On Unix the file may be located in :file: `/etc/pip.conf `. Alternatively
375
375
it may be in a "pip" subdirectory of any of the paths set in the
@@ -380,17 +380,19 @@ variable ``PIP_CONFIG_FILE``.
380
380
:file: `C:\\ Documents and Settings\\ All Users\\ Application Data\\ pip\\ pip.ini `
381
381
* On Windows 7 and later the file is hidden, but writeable at
382
382
:file: `C:\\ ProgramData\\ pip\\ pip.ini `
383
- * Site-wide configuration is not supported on Windows Vista
383
+ * Global configuration is not supported on Windows Vista.
384
+
385
+ The global configuration file is shared by all Python installations.
384
386
385
387
If multiple configuration files are found by pip then they are combined in
386
388
the following order:
387
389
388
- 1. The site-wide file is read
390
+ 1. The global file is read
389
391
2. The per-user file is read
390
392
3. The virtualenv-specific file is read
391
393
392
394
Each file read overrides any values read from previous files, so if the
393
- global timeout is specified in both the site-wide file and the per-user file
395
+ global timeout is specified in both the global file and the per-user file
394
396
then the latter value will be used.
395
397
396
398
The names of the settings are derived from the long command line option, e.g.
0 commit comments