Advertisement
Guest User

Untitled

a guest
May 29th, 2015
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. # Pre-requisite
  4. brew install libmagic
  5.  
  6. # Create a folder and copy pypi-proxy.wsgi and requirements.txt into it. Then `cd`
  7. # into the folder and do the following:
  8. mkdir eggs logs
  9. virtualenv venv
  10. . venv/bin/activate
  11. pip install -r requirements.txt
  12.  
  13. # Run the PyPi Proxy server with:
  14. python pypi-proxy.wsgi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement