mirror of
https://github.com/google/brotli.git
synced 2026-07-08 17:56:58 +00:00
.python-eggs #115
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @pdknsk on GitHub (May 25, 2016).
Is there a reason it makes these in
$HOME? I've yet to notice apipinstalled package do this.@anthrotype commented on GitHub (May 26, 2016):
http://stackoverflow.com/questions/2192323/what-is-the-python-egg-cache-python-egg-cache
I'd recommend you don't do
python setup.py install
when installing from the source directory, as that triggers setuptools to create an .egg. Instead, use
pip install .
This will not create eggs, but will install the package unzipped in the site-packages.
@pdknsk commented on GitHub (May 26, 2016):
Thanks for the tip. This should be in the documentation. Ideally there would be a
pippackage.@anthrotype commented on GitHub (May 26, 2016):
Well, there are "pip packages": that is, wheels, available from the GitHub releases page of this repository.
I guess you meant that these wheels should be also available from PyPI, so one can just do pip install brotli. Of course, I'm with you on that.
@pdknsk commented on GitHub (May 26, 2016):
It didn't occur to me to try. That's good enough IMO, but should really be documented.
@rleonhardt commented on GitHub (Jun 6, 2017):
@anthrotype: could you change README.md and python/README.md accordingly to use
pip install .instead ofpython setup.py install?And in addition for people who don't want to clone the repository first
pip install git+https://github.com/google/brotli/@eustas commented on GitHub (Sep 19, 2017):
Done