The names of the settings are derived from the long command line option
Expected in APPDATA
Open an explorer and write: %APPDATA%\pip\pip.ini , if it does not exist, create it.
- command line option:
--index-url - parameter :
index-url
| pip config list | |
| ls "$APPDATA"/pip/pip.ini | |
| mkdir -p "$APPDATA"/pip | |
| notepad "$APPDATA"/pip/pip.ini | |
| #make sure ini has an effect | |
| pip config list | |
| #clean-up | |
| rm "$APPDATA"/pip/pip.ini |
| [global] | |
| index-url = https://download.zope.org/ppix |