After installing our Virtualenvwrapper we need to now create our virtual environment using the mkvirtualenv command.
mkvirtualenv dsargon
dsargon here is the name of my virtual environment.. you can name it anyhow you want.
Confirm if your installed python and Django is available in your virtual environment by running the command below.
python
import django
exit()
Now we can confirm python is accessible in our environment created and as well we can import Django package.
Lets launch our visual studio code editor, change directory to our Project folder and run our project by using the runserver command.
Python manage.py runserver
And select the right virtual environment for our project which is dsargon in this case.
SOCIAL SHARE CARD GENERATOR