進入python安裝目錄,例如python安裝在d盤,你只要進到下面這個資料夾去,D:\Program Files\Python33\Lib\idlelib\idle.bat運行即可。
至於出現一個黑色的空白cmd命令提示字元視窗的解決方法只要用記事本打開idle.bat文件,在文件的末尾加上exit即可,如:
idle.bat原始程式碼:
@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
更改後程式碼:
@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
補充:可以將D:\Program Files\Python33\Lib\idlelib\加入系統變量,這樣只要開cmd輸入idle回車就可以了。
以上是python安裝包裡idle在哪的詳細內容。更多資訊請關注PHP中文網其他相關文章!