How to open python idle

(*-*)浩
Release: 2019-05-30 13:53:57
Original
10540 people have browsed it

IDLE is an integrated development environment that comes with the Python software package, which can easily create, run, and debug Python programs.

How to open python idle

Enter your python installation directory. For example, my python is installed on the d drive. You only need to enter the following folder, for example: D:\ProgramFiles \Python33\Lib\idlelib\idle.bat can be run.

As for the solution to a black blank cmd command prompt window, just open the idle.bat file with Notepad and add exit at the end of the file,

For example:

##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
Copy after login

After change 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
Copy after login

In addition, you can add D:\Program Files\Python33\Lib\idlelib\ to the system variable, so you only need to open cmd and enter idle and press Enter.

The above is the detailed content of How to open python idle. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template