warning in django installation via pip

django, pip, ubuntu-12.04, vagrant, virtualenv

Solution

These warnings are not a problem; Django is still being successfully installed. (The previous question you mention is asking something quite different, and is not concerned with the warnings.)

Problem

When I try to install django I keep getting this warning. I tried the solution mentioned in this question but still its the same what should I do ? My virtual os is ubuntu in vagrant. ``` Downloading/unpacking django==1.5.1 Downloading Django-1.5.1.tar.gz (8.0Mb): 8.0Mb downloaded Running setup.py egg_info for package django warning: no previously-included files matching '__pycache__' found under directory '*' warning: no previously-included files matching '*.py[co]' found under directory '*' Installing collected packages: django Running setup.py install for django warning: no previously-included files matching '__pycache__' found under directory '*' warning: no previously-included files matching '*.py[co]' found under directory '*' changing mode of /home/vagrant/blog-venv/bin/django-admin.py to 777 Successfully installed django Cleaning up... ```

Original source