首頁  >  文章  >  後端開發  >  python安裝包裡idle在哪

python安裝包裡idle在哪

anonymity
anonymity原創
2019-06-20 10:01:175858瀏覽

進入python安裝目錄,例如python安裝在d盤,你只要進到下面這個資料夾去,D:\Program Files\Python33\Lib\idlelib\idle.bat運行即可。

python安裝包裡idle在哪

至於出現一個黑色的空白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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn