Posts
Showing posts from December, 2018
Arana Technologies AtQuantum Computing knowledge Workshop.
- Get link
- X
- Other Apps
Python and Django install
- Get link
- X
- Other Apps
Goto https://www.python.org/downloads/release/python-370/ and download the setup as shown below: Intall Python in c:\python Change the path variable so that the Python command becomes available in every directory Test if python is install properly . Go to command Prompt and type "python" Install Django Try to see if you have easy_install intalled It seems that the path of easy install is not set. Normall when you install python, a folder named "script" gets created inside it which holds this file. So we need to add c:\python\scripts\ to our path varriable Now test in the Easy_install is avialable Now use Easy_install to Install Django Commnad is : easy_install Django Inorder to verify if you have installed Django correctly use the following command django-admin --version Inorder to start a new Django project, Create a folder and ge...