Correct server starting instructions

This commit is contained in:
Anthony Sottile 2015-05-09 08:35:59 -07:00
parent f9e351cdb6
commit 3c655eafe6
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ Run the following commands to get your PyPI server up and running::
mkdir ~/packages ## Copy packages into this directory.
## Start server.
./pypi-server -p 8080 ~/packages & ## Will listen to all IPs.
pypi-server -p 8080 ~/packages & ## Will listen to all IPs.
## Download and Install hosted packages.
pip install --extra-index-url http://localhost:8080/simple/ ...