Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder2.enfer-du-nord.net!txtfeed1.tudelft.nl!tudelft.nl!txtfeed2.tudelft.nl!amsnews11.chello.com!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'subject:Django': 0.03; 'interpreter': 0.05; 'django,': 0.07; 'importerror:': 0.07; 'something,': 0.07; 'suggestions,': 0.07; 'python': 0.08; 'satchmo': 0.09; 'subject:virtualenv': 0.09; 'error:': 0.10; 'developer': 0.12; 'received:209.85.210.174': 0.13; 'received :mail-iy0-f174.google.com': 0.13; 'typing': 0.15; '"manage.py': 0.16; '(windows': 0.16; '2.7.2': 0.16; 'from:addr:alec.taylor6': 0.16; 'from:name:alec taylor': 0.16; 'so)?': 0.16; 'subject:install': 0.16; 'subject:modules': 0.16; 'url:gettingstarted': 0.16; 'url:html)': 0.16; 'x64': 0.16; '(most': 0.21; 'to:2**1': 0.21; 'traceback': 0.24; 'scale': 0.25; 'module': 0.26; 'django': 0.26; 'import': 0.27; 'project,': 0.28; '(and': 0.28; 'skip:" 30': 0.28; 'message-id:@mail.gmail.com': 0.28; "skip:' 10": 0.29; 'again?': 0.30; 'ran': 0.30; 'installed': 0.31; 'thanks': 0.31; 'does': 0.32; 'named': 0.33; 'there': 0.33; 'to:addr:python-list': 0.34; 'it.': 0.34; 'last):': 0.34; 'project': 0.35; 'install': 0.35; 'file': 0.36; 'but': 0.37; 'received:google.com': 0.37; 'could': 0.37; 'doing': 0.38; 'received:209.85': 0.38; 'went': 0.38; 'url:en': 0.39; 'url:org': 0.39; 'should': 0.39; "couldn't": 0.39; 'why': 0.39; 'setup': 0.40; 'received:209': 0.40; 'to:addr:python.org': 0.40; 'back': 0.62; 'taylor': 0.67; 'subject:+': 0.73; '10%': 0.76; 'advantages': 0.80; 'me:': 0.84; 'running,': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; bh=cDWhZ0R0BtVDqMyp+2/LKiKsu7VThw+igICxE6fLEEM=; b=nGMOWKMXpjHFUyCC6mDAu7m3YjTOfllvZg5OoaxPFqSTPRQLVgXZC1nP/3ma/lYP04 /fDHjium1wUP04q8GIe5UugQWrI+9LxS6rz2utcTqEk9KWYoVU5/teKvoyauL+bEoIgE PNYWIYrds+8Zq+fMh7oA/L3dnwTbqm3jUnQZo= MIME-Version: 1.0 Date: Fri, 6 Jan 2012 06:01:46 +1100 Subject: virtualenv wrecked my Django+modules install From: Alec Taylor To: django-users@googlegroups.com, "comp.lang.python" Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 33 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1325790109 news.xs4all.nl 6942 [2001:888:2000:d::a6]:57554 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:18558 Good morning, On my system (Windows 8 Developer Preview x64 with Python 2.7.2 x64) I painstakingly installed all the dependencies for Django, Satchmo and a few other large scale projects. (about 10% couldn't be installed with pip, which is why I use the word 'painstakingly') Recently though I needed Pinax for something, so following there guide (http://pinax.readthedocs.org/en/latest/gettingstarted.html) I setup a virtualenv for it. Not only could I not get Pinax running, but when I went back to work on my Satchmo-based project, and ran "manage.py runserver" I got the following error: Traceback (most recent call last): File "P:\Prototype\Django\store\manage.py", line 18, in from django.core.management import execute_manager ImportError: No module named django.core.management Typing in `import django` from the interpreter gives me: Traceback (most recent call last): File "", line 1, in ImportError: No module named django Does this mean I need to install everything required by my project all over again? - If so, should I take a virtualenv approach (and what would the advantages be of doing so)? Thanks for all suggestions, Alec Taylor