First of all, I use pycharm as the development IDE. When I create a Django project for the first time, the Django package will be automatically installed. (There are also many separate installation methods on the Internet). After the environment variables are successfully configured, use the following method to check whether the installation is successful or not.
Punch in the command prompt form
Input: python
Appear: Python 2.7.6 (default, Nov 10 2013, 19:24:18) [MSC v.1500 32 bit (Intel) ] on win32
Type "help", "copyright", "credits" or "license" for more information.
Input: import django Enter key
Continue input: django.get_version()
appears :'1.6.2'
As shown below
##
The above is the detailed content of How to check whether python and django are installed and configured successfully. For more information, please follow other related articles on the PHP Chinese website!