Can someone tell me real quick how you set up a Django environment on Windows? I need Apache, MYSQL, SQLite and Python. I have a XAMPP and WAMP server on my computer that I use for PHP web applications. I just need someone to tell me how you personally set up a DJango environment on your windows machines. I am quite new to the Python world, so please excuse my ignorance. Thank you all in advance.
Share
Python has some installation tools which make installing packages a breeze.
First install python. There are executables for different versions available.
http://www.python.org/getit/releases/2.7.3/
Then install python setup tools: http://pypi.python.org/pypi/setuptools/
After this you can install
pip:easy_install pipOnce pip is installed you can install django by using
pip install django. If these commands are not in your path you will have to execute them from your python directory!http://www.youtube.com/watch?v=rIVwVOpwpsA