在vim中设置python virtualenv

在vim中设置python virtualenv,第1张

在vim中设置python virtualenv

这是我使用的(很抱歉,突出显示的内容很奇怪)。

" Function to activate a virtualenv in the embedded interpreter for" omnicomplete and other things like that.function LoadVirtualEnv(path)    let activate_this = a:path . '/bin/activate_this.py'    if getftype(a:path) == "dir" && filereadable(activate_this)        python << EOFimport vimactivate_this = vim.eval('l:activate_this')execfile(activate_this, dict(__file__=activate_this))EOF    endifendfunction" Load up a 'stable' virtualenv if one exists in ~/.virtualenvlet defaultvirtualenv = $HOME . "/.virtualenvs/stable"" only attempt to load this virtualenv if the defaultvirtualenv" actually exists, and we aren't running with a virtualenv active.if has("python")    if empty($VIRTUAL_ENV) && getftype(defaultvirtualenv) == "dir"        call LoadVirtualEnv(defaultvirtualenv)    endifendif

请注意,您需要针对用于virtualenv的Python编译MacVim,例如,如果您从Python.org下载了Python
2.7,则应使用

--with-python-config-dir=/Library/frameworks/Python.framework/Versions/2.7/lib/python2.7/config
作为参数重新编译MacVim
./configure


希望有帮助!

编辑: 只需注明 出处:
写这个小东西的许多侦探工作都是由这个博客完成的,他应该得到一些荣誉。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5666741.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存