sublime配置python 3環境-可輸入
阿新 • • 發佈:2018-12-30
系統: win10
軟體: sublime text3
python: python 3.6.6
時間: 2018-10-21
外掛: sublimeREPL
用過sublime text3 寫python3的小夥伴會發現, 在ST3上可以解釋py3但無法輸入. 無法輸入, 那有啥用…
我今天介紹的解決方案是使用外掛 sublimeREPL.
外掛安裝方法自行百度.
安裝好後, 在如圖所示的頁面上對一個python程式進行解釋
每次執行都要這麼麻煩? 當然不必. 我們可以自定義快捷方式, 使得一鍵解釋執行.
在如圖所示路徑下新建快捷方式, 將下面這段程式碼copy進去. 可以自定義按鍵.
[ { "keys": ["f5"], "caption": "SublimeREPL: Python - RUN current file", "command": "run_existing_window_command", "args": { "id": "repl_python_run", "file": "config/Python/Main.sublime-menu"} }, { "keys": ["f8"], "caption": "SublimeREPL: Python - PDB current file", "command": "run_existing_window_command", "args": { "id": "repl_python_pdb", "file": "config/Python/Main.sublime-menu"} }, { "keys": ["f6"], "caption": "SublimeREPL: Python", "command": "run_existing_window_command", "args": { "id": "repl_python", "file": "config/Python/Main.sublime-menu"} }, ]
如圖
這樣按F5就可以執行python程式了.
有個小問題: 每次執行它都會彈出一個視窗, 而不是像其他編譯一樣在編譯器下方的視窗上.
可以用分屏解決, 但感覺有點不太對.
將執行結果放在下邊:
或者在右邊