Commit abbf7a3f authored by mikemccabe's avatar mikemccabe

Remove -e from suggested pip install line

Using the -e flag creates an unnecessarily messy virtualenv, including bulky .git directories.  Switching the git url format seems to fix this.
parent fecf633d
......@@ -34,11 +34,11 @@ installing from github
To install latest release candidate:
pip install cython -e git://github.com/surfly/gevent.git@1.0rc2#egg=gevent
pip install cython git+git://github.com/surfly/gevent.git@1.0rc2#egg=gevent
To install latest development version:
pip install cython -e git://github.com/surfly/gevent.git#egg=gevent
pip install cython git+git://github.com/surfly/gevent.git#egg=gevent
running tests
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment