Fix the literal blocks
This commit is contained in:
parent
6926ff3f5b
commit
dadfce65bc
35
pep-0470.txt
35
pep-0470.txt
|
@ -84,33 +84,38 @@ Examples of Additional indexes with pip
|
|||
|
||||
**Invocation:**
|
||||
|
||||
::
|
||||
$ pip install --extra-index-url https://pypi.example.com/ foobar
|
||||
::
|
||||
|
||||
$ pip install --extra-index-url https://pypi.example.com/ foobar
|
||||
|
||||
**Shell Environment:**
|
||||
|
||||
::
|
||||
$ export PIP_EXTRA_INDEX_URL=https://pypi.example.com/
|
||||
$ pip install foobar
|
||||
::
|
||||
|
||||
$ export PIP_EXTRA_INDEX_URL=https://pypi.example.com/
|
||||
$ pip install foobar
|
||||
|
||||
**Requirements File:**
|
||||
|
||||
::
|
||||
$ echo "--extra-index-url https://pypi.example.com/\nfoobar" > requirements.txt
|
||||
$ pip install -r requirements.txt
|
||||
::
|
||||
|
||||
$ echo "--extra-index-url https://pypi.example.com/\nfoobar" > requirements.txt
|
||||
$ pip install -r requirements.txt
|
||||
|
||||
**Virtual Environment:**
|
||||
|
||||
::
|
||||
$ python -m venv myvenv
|
||||
$ echo "[global]\nextra-index-url = https://pypi.exmaple.com/" > myvenv/pip.conf
|
||||
$ myvenv/bin/pip install foobar
|
||||
::
|
||||
|
||||
$ python -m venv myvenv
|
||||
$ echo "[global]\nextra-index-url = https://pypi.exmaple.com/" > myvenv/pip.conf
|
||||
$ myvenv/bin/pip install foobar
|
||||
|
||||
**User:**
|
||||
|
||||
::
|
||||
$ echo "[global]\nextra-index-url = https://pypi.exmaple.com/" >~/.pip/pip.conf
|
||||
$ pip install foobar
|
||||
::
|
||||
|
||||
$ echo "[global]\nextra-index-url = https://pypi.exmaple.com/" >~/.pip/pip.conf
|
||||
$ pip install foobar
|
||||
|
||||
|
||||
External Links on the Simple Installer API
|
||||
|
|
Loading…
Reference in New Issue