python - Pip not installing from requirements file to virtualenv - "Source in . has version ., which satisfies requirement . (from -r requirements.txt (line .) -


i'm experiencing issue similar to:

and

and

the difference i'm not using sudo.

  • ubuntu 12.04,
  • pip 1.1
  • python 2.7.3
  • plain virtualenv (regardless if using virtualenvwrapper or not),

when run pip install -r requirements.txt output suggesting downloading each dependency , after such output of similar style each dependency (i believe has sth last message):

downloading/unpacking south==0.8.4 (from -r requirements.txt (line 5)) running setup.py egg_info package south running command python setup.py egg_info running egg_info writing pip-egg-info/south.egg-info/pkg-info writing top-level names pip-egg-info/south.egg-info/top_level.txt writing dependency_links pip-egg-info/south.egg-info/dependency_links.txt warning: manifest_maker: standard file '-c' not found  reading manifest file 'pip-egg-info/south.egg-info/sources.txt' writing manifest file 'pip-egg-info/south.egg-info/sources.txt' source in /home/mstrecker/sample_env/build/south has version 0.8.4, satisfies requirement south==0.8.4 (from -r requirements.txt (line 5)) 

after pip freeze returns:

argparse==1.2.1 distribute==0.6.24 wsgiref==0.1.2 

any idea one? don't want type manually :| if fine , installed.

requirements.txt:

django==1.4 pil==1.1.7 pillow==2.3.0 pypdf2==1.19 south==0.8.4 unidecode==0.04.9 argparse==1.2.1 chardet==2.2.1 coverage==3.5 distribute==0.6.24 django-common-helpers==0.6.0 django-cron==0.2.2 django-endless-pagination==2.0 django-extensions==1.3.3 django-haystack==2.0.0-beta django-mockups==0.4.8 django-newsletter==0.3.0 django-nose==1.1 django-pylibmc==0.5.0 django-registration==0.8 django-timelog==0.4 html5lib==0.90 httplib2==0.7.6 nose==1.0.0 progressbar==2.3 psycopg2==2.5.2 pypdf==1.13 pyelasticsearch==0.2 pylibmc==1.2.3 python-dateutil==2.0 pytz==2013.9 reportlab==2.5 requests==2.2.1 six==1.5.2 surlex==0.2.0 texttable==0.8.1 vobject==0.8.1c wsgiref==0.1.2 xhtml2pdf==0.0.5 


Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -