[Django]-What is pip install -q -e . for in this Travis-CI build tutorial?

25👍

-q means quiet (to control the console log level).

-e is for you install a local directory as a package. Suppose you check out flask to ~/flask, then pip install -e ~/flask will symlink your ~/flask to your site-packages directory.

Leave a comment