I am currently on Windows and the Venv is not getting activatedUnactivated ENV, Is there any way to fix this. Thanking you guys in advance! Help out a newbie!
In windows: Press Windows (or Windows+R) and then type “cmd”: Run the Command Prompt in normal mode.
cd C:\Users\user\Desktop\UserDjangoProject> pip install virtualenv
virtualenv -p python3 venv
venv\Scripts\activate
(venv) C:\Users\user\Desktop\UserDjangoProject>
pip install -r requirements.txt
./manage.py runserver