Skip to content Skip to sidebar Skip to footer

-bash: Django-admin.py: Command Not Found (django Installation)

Sorry I realize this is a very novice question: I am not yet skilled in Python. I have tried to follow a few basic django tutorials to get a simple site running. I am getting the e

Solution 1:

It looks like Bitnami supplies its own version of Python and that's where Django is installed so you need to make sure you are running that Python and not an Apple-supplied system Python, for example. According to the quick start guide, it looks you can either use their supplied console application which should ensure you are running with their Python:

/Applications/djangostack-1.4-0/use_djangostack

or you may be able to use the absolute path to that Python:

/Applications/djangostack-1.4-0/python/bin/python django-admin.py

Post a Comment for "-bash: Django-admin.py: Command Not Found (django Installation)"