I've installed python 3.7, but whenever I try and run a script in cmd, it says: Requested Python Version (3.7) is not installed.
Now, I start my scripts with #!/usr/bin/env python3.7, which just means that I don't have to write python3.7 in to cmd.
But, when I start my script with #!/usr/bin/env python, the script runs perfectly fine on cmd. What does this mean? Is it not running my script in Python3.7?
#!/usr/bin/env python --versionand tell me the output?Python 3.7.4is the output.#!/usr/bin/env python --versionat the start of my script, and then try and run the script in cmd, the output is simplyPython 3.7.4, it doesn't run my script?pythonin to cmd, it starts Python 3.7.4 interactively, with the>>>.