如何让python的第三方库twisted在sublime中自动补全?

How to make the third party library twisted of python automatically complete in sublime?

我已经在 sublime 中安装了软件包 'Anaconda'。但它不适用于 twisted 等第三个库......我怎样才能让它自动完成?提前致谢。

By default, anaconda uses the python interpreter that is in your PATH environment variable, the most important configuration option is the python_interpreter option that allow the user to use a different python interpreter, for example, one that resides in a virtual environment:

所以检查你的 sublime3 配置,确保 python 解释器是正确的:

例如

{
    "font_face": "Monaco",
    "font_size": 11,
    "python_interpreter": "/Users/**/venv/bin/python"
}

查看来自 anaconda settings 的更多详细信息。