Python Django for Beginners with 2 Practical Projects https://www.udemy.com/course/python-django-for-beginners-with-2-practical-projects/learn/lecture/37682738#overview
Python Django for Beginners with 2 Practical Projects
https://www.udemy.com/course/python-django-for-beginners-with-2-practical-projects/learn/lecture/37682738#overview
$ python -m pip install --upgrade pip
$ pip install virtualenv
to activate a virtual environment with env
$ pip freeze
No package is installed in virtual env:
To deactivate virtual env
$ deactivate
No see again the list of all packages installed in our Gobal Env:
$ pip freeze
Now to install django
$ pip install django
$ python manage.py runserver
Comments
Post a Comment