Home > Article > Backend Development > Where is idle in the python installation package?
Enter the python installation directory. For example, if python is installed on the d drive, you only need to go to the following folder and run D:\Program Files\Python33\Lib\idlelib\idle.bat.
As for the solution to the appearance of a black blank cmd command prompt window, just open the idle.bat file with Notepad and add exit at the end of the file, such as :
idle.bat Original code:
@echo off rem Start IDLE using the appropriate Python interpreter set CURRDIR=%~dp0 start "IDLE" "%CURRDIR%..\..\pythonw.exe" "%CURRDIR%idle.pyw" %1 %2 %3 %4 %5 %6 %7 %8 %9
Changed code:
@echo off rem Start IDLE using the appropriate Python interpreter set CURRDIR=%~dp0 start "IDLE" "%CURRDIR%..\..\pythonw.exe" "%CURRDIR%idle.pyw" %1 %2 %3 %4 %5 %6 %7 %8 %9 exit
Supplement: You can add D:\Program Files\Python33\Lib\idlelib\ to system variables , so just open cmd and enter idle and press Enter.
The above is the detailed content of Where is idle in the python installation package?. For more information, please follow other related articles on the PHP Chinese website!