Discuss Scratch
- Discussion Forums
- » Advanced Topics
- » Where can I find JUST a Python interpreter for Windows?
- SAVVYSCLUTTER
-
500+ posts
Where can I find JUST a Python interpreter for Windows?
I'm writing a Tkinter program for my dad's business. The .py file will be stored on a server and be accessed by Windows PCs.
Is there a program that's just a Python interpreter and not an IDE?
Is there a program that's just a Python interpreter and not an IDE?
- WojtekGame
-
1000+ posts
Where can I find JUST a Python interpreter for Windows?
This is actually where the IDE is used: in the .py file, so just use Python's app.
- DifferentDance8
-
1000+ posts
Where can I find JUST a Python interpreter for Windows?
In the end, it's not possible to install Python without Idle. There are no config switches or other methods to exclude it. Idle can be an extremely valuable tool. I would risk saying that although you don't see a need for it today, it may come in handy in the future.
- SAVVYSCLUTTER
-
500+ posts
Where can I find JUST a Python interpreter for Windows?
The file will be given to my dad's clients, who won't edit it. Is there no unofficial Python interpreter without IDLE?In the end, it's not possible to install Python without Idle. There are no config switches or other methods to exclude it. Idle can be an extremely valuable tool. I would risk saying that although you don't see a need for it today, it may come in handy in the future.
- mybearworld
-
1000+ posts
Where can I find JUST a Python interpreter for Windows?
Is IDLE really that bad? You can remove the start menu entry of it if that's the problem.
- DifferentDance8
-
1000+ posts
Where can I find JUST a Python interpreter for Windows?
Not that i'm aware of, no. What's bad about idle anyway?The file will be given to my dad's clients, who won't edit it. Is there no unofficial Python interpreter without IDLE?In the end, it's not possible to install Python without Idle. There are no config switches or other methods to exclude it. Idle can be an extremely valuable tool. I would risk saying that although you don't see a need for it today, it may come in handy in the future.
- SAVVYSCLUTTER
-
500+ posts
Where can I find JUST a Python interpreter for Windows?
I don't dislike IDLE - my dad's clients just won't need it. Removing Start menu entries is pointless. Is IDLE really that bad? You can remove the start menu entry of it if that's the problem.
- god286
-
1000+ posts
Where can I find JUST a Python interpreter for Windows?
Maybe you could convert the file into an exe and distribute that without Python having to be installed
Last edited by god286 (April 16, 2023 08:39:07)
- WojtekGame
-
1000+ posts
Where can I find JUST a Python interpreter for Windows?
Yes! For example: C/C++, Rust. Maybe you could convert the file into an exe and distribute that without Python having to be installed
- SAVVYSCLUTTER
-
500+ posts
Where can I find JUST a Python interpreter for Windows?
I'm writing it on Linux and need to test it. Maybe you could convert the file into an exe and distribute that without Python having to be installed
- DifferentDance8
-
1000+ posts
Where can I find JUST a Python interpreter for Windows?
NOTE: These instructions only work for windows, because that's really the only OS i use.I don't dislike IDLE - my dad's clients just won't need it. Removing Start menu entries is pointless. Is IDLE really that bad? You can remove the start menu entry of it if that's the problem.
First: Install python regularly, then go to "C:\Users\[YOUR USERNAME]\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Python 3.10\“.
Then remove the .lnk (not .ink) file with the name of ”IDLE (Python 3.10 64-bit)" (this step may require admin, give admin priveledges)
Done!

Note that this is the closest you can get to removing IDLE (unless you don't need pythonw.exe, then remove that as well. This StackOverflow answer is a list of differences between python.exe and pythonw.exe)
- SAVVYSCLUTTER
-
500+ posts
Where can I find JUST a Python interpreter for Windows?
This will just remove the Start entry. Remove the .lnk (not .ink) file with the name of “IDLE (Python 3.10 64-bit)”.
I may close the topic and install Python with IDLE.
- mybearworld
-
1000+ posts
Where can I find JUST a Python interpreter for Windows?
If nobody will modify it, you can also use pyinstaller to package it in to an exe.
- SAVVYSCLUTTER
-
500+ posts
Where can I find JUST a Python interpreter for Windows?
If nobody will modify it, you can also use pyinstaller to package it in to an exe.
I'm writing it on Linux and need to test it.
- BreadcatGames
-
1000+ posts
Where can I find JUST a Python interpreter for Windows?
Have you ever… actually written anything in those languages?Yes! For example: C/C++, Rust. Maybe you could convert the file into an exe and distribute that without Python having to be installed
- applejuiceproduc
-
1000+ posts
Where can I find JUST a Python interpreter for Windows?
+1Have you ever… actually written anything in those languages?Yes! For example: C/C++, Rust. Maybe you could convert the file into an exe and distribute that without Python having to be installed
- WojtekGame
-
1000+ posts
Where can I find JUST a Python interpreter for Windows?
In C/C++, yes, Rust, nope.+1Have you ever… actually written anything in those languages?Yes! For example: C/C++, Rust. Maybe you could convert the file into an exe and distribute that without Python having to be installed
- ajskateboarder
-
1000+ posts
Where can I find JUST a Python interpreter for Windows?
Your projects:In C/C++, yes, Rust, nope.+1 Have you ever… actually written anything in those languages?

don't have any code in them

- bigspeedfpv
-
500+ posts
Where can I find JUST a Python interpreter for Windows?
no. package it as an exe. but really, don't write user-facing products in python I'm writing a Tkinter program for my dad's business. The .py file will be stored on a server and be accessed by Windows PCs.
Is there a program that's just a Python interpreter and not an IDE?
- mybearworld
-
1000+ posts
Where can I find JUST a Python interpreter for Windows?
(#14)Does pyinstaller not work on Linux? Given the fact that there are “Windows and Mac OS X specific options”, I think it should.If nobody will modify it, you can also use pyinstaller to package it in to an exe.I'm writing it on Linux and need to test it.
Edit: It works on there.
Last edited by mybearworld (April 16, 2023 17:57:58)
- Discussion Forums
- » Advanced Topics
-
» Where can I find JUST a Python interpreter for Windows?