After installation of Python package from Git repository some folders are missing
pip, python, setup.py
Solution
The reason the package misses fixtures and stuff is that there is no MANIFEST in this repo.
Try installing for development:
pip install -e git+git://github.com/geomin/django-countria.git#egg=countria
Or, clone the package and run:
pip install -e path/to/clone
Problem
I want to install a package from the following repo https://github.com/geomin/django-countria. The command I'm using is `pip install git://github.com/geomin/django-countria.git`. Pip clones the repo to a temporary folder and then runs `setup.py`. The problem is that after installation completes, `site_packages` containes files `countria-0.8-py2.7.egg/countria/models.py` and `countria-0.8-py2.7.egg/countria/__init__.py` but no `fixtures` and `locale` folders. If I clone the package and run `setup.py` I get the same behavior.