Popular posts from this blog
Python and DJango Installation
Python and DJango Installation Steps Download Python latest version which is compatible to your OS. And then follow below commands through Windows Powershell > pip install virtualenvwrapper-win -- To install virtual environment > mkvirtualenv myproject -- create Project you virtual Environment > workon myproject -- to shift and work on your project > pip install django -- Install Django using pip > python -m django --version -- to check installed Django version To create your project PS > django-admin startproject myfirst To run python server PS > python manage.py runserver To apply those changes to the database. ...
Comments
Post a Comment