Sublime2 and SublimeREPL

谁都会走 提交于 2019-12-06 02:13:00
Ashoka Lella

Sublime REPL picks up python from windows system path by default. You can set this path by following this

In case you want to make changes in SublimeREPL.sublime-settings you need to change your line to

"default_extend_env": {"PATH":"{PATH};c:\\Python32"},
  1. Since you're in windows you'll need to save '\' character from escaping using '\\'
  2. The *SublimeREPL.sublime-settings is a JSON file so it expects ',' at the end
  3. The "{PATH};" part is optional. It allows you to add python path to your existing path instead of overriding it.
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!