How to a python file run on any computer as I have to install python every time to get it to run on some new computer.
For example I file called foo.py
print("this should run on any computer")
How do I run this on anyone's computer?
How to a python file run on any computer as I have to install python every time to get it to run on some new computer.
For example I file called foo.py
print("this should run on any computer")
How do I run this on anyone's computer?
The solution is to use a program called pyinstaller to convert the py file to a exe file which can run on any computer.