I am using the Python development plugin in Sublime Text 3 Anaconda .
Everything works fine, but now that I have a django project, I want to take advantage of Anaconda features as well goto definition
.
Unfortunately, I cannot get it to work. I tried adding paths to my project settings with no luck:
"settings": {
"python_interpreter": "C:/Users/user/virtualenvs/example/Scripts/python",
"extra_paths":
[
"C:/Users/user/virtualenvs/example/Lib",
"C:/Users/user/virtualenvs/example/Lib/site-packages/django"
]
}
Do you know how to overcome this problem?
source
share