Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

warning in django installation via pip

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...
like image 868
user2539745 Avatar asked Aug 13 '13 08:08

user2539745


1 Answers

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.)

like image 155
James Aylett Avatar answered Sep 27 '22 19:09

James Aylett