I'm following this help page: https://developer.mozilla.org/en-US/docs/Learn/Common_questions/set_up_a_local_testing_server
I'm running Windows 10 and Python 3.7.8. I created a folder where I want a test environment. Then I changed the directory in the command prompt to that folder and ran the command to start up the server.
C:\Users\jpilbeam\TestEnvironment>python3 -m http.server
But that did not work, and neither did the alternative port 7800:
Python was not found; run without arguments to install from the Microsoft Store, or disable this shortcut from Settings > Manage App Execution Aliases.
I know I have a couple copies of Python 3.x on my machine. From the terminal I only found one using this:python -c "import sys; print('\n'.join(sys.path))"
Prints:C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64
Based on that help doc, I'm not able to set up the server.