For some reason my windows virtual environment will not work. I keep getting the error message
error message
$ project_env\Scripts\.activate.bat
bash: project_envScripts.activate.bat: command not found
current pwd output
$ pwd
/c/Users/Andrew/Desktop/Django_For_Beginners_Books/code/helloworld/project_env
I am running this command while in the
Instructions
Create a new virtual environment called .venv, activate it, and install Django with Pip as we did
in the previous chapter. We can also install Black now, too.
Shell
Windows
$ python -m venv .venv
$ .venv\Scripts\Activate.ps1
(.venv) $ python -m pip install django~=4.2.0
(.venv) $ python -m pip install black