I am trying to run run a source
command on cmd on windows.
The code I'm using is:
python -m venv sandbox
which works fine but then when I want to activate it with:
source sandbox/bin/activate
I get the error message:
'source' is not recognized as an internal or external command,
operable program or batch file.
What can I do to activate the sandbox?