In the django tutorials the guy explains edit the setup.py with the following:
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
Why do I need normpath here? Wouldn't it suffice to only use dirname?:
os.chdir(os.path.dirname(__file__))