Click here to Skip to main content
15,885,546 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
For a C# app I know were to find it for an app created in Visual Studio, but I don't see an analogous "bin" folder for a Python app.

I want to be able to run an executable for a Python without having to run Visual Studio.

What I have tried:

Tried looking in all the folders created by Visual Studio for a Python app
Posted
Updated 31-May-22 18:34pm
Comments
Richard MacCutchan 1-Jun-22 4:11am    
You will not find one; Python executes directly from the source code.

1 solution

That's because Python is normally an interpreted language, not compiled.

If you want to compile it to an .EXE, you have to run it through a 3rd party compiler specifically for Python. See compile python - Google Search[^]
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900