Cant activate virtual enviroment with DJango Windows

I'm new to django and following this tutorial: https://www.youtube.com/watch?app=desktop&v=c-QsfbznSXI At 6:15 he showed command to how to activate virtual env(im using Windows) but it doesnt working for me Command in tutorial:

env/Scripts/activate.bat

nothing happens (https://i.sstatic.net/oTQorh9A.png)

i tried this commands:

venv\Scripts\activate
venv/bin/activate

doesnt work

To create a virtual environment On Windows, run:

python -m venv tutorial-env

This will create the tutorial-env directory if it doesn’t exist, and also create directories inside it containing a copy of the Python interpreter and various supporting files.

Then activate your virtual environment by running

tutorial-env\Scripts\activate

Take note of the backslashes for windows. See Virtual Environments and Packages

Back to Top