Home > Software design >  Django-How to activate new env
Django-How to activate new env

Time:06-08

i have an issue with activating my virtual env. I added the django library but cannot activate my django library. What should i do next ?

https://i.stack.imgur.com/N9hCu.png

CodePudding user response:

  • to create an environment (venv its environment name)
virtualenv venv
  • for activate environment
source venv/bin/activate

Learn how to use google, it will be very useful

CodePudding user response:

it's better to use something like poetry

poetry add django
poetry shell
  • Related