Questions tagged [sublime-anaconda]

The Anaconda plugin for Sublime Text 3 (completely unrelated to the Anaconda Python distribution) provides many IDE-like features for programming in Python. Features include intelligent autocompletion, function signature and documentation tooltips, linting, autoformatting, and more.

The Anaconda plugin for Sublime Text 3 (completely unrelated to the Python distribution) provides many IDE-like features for programming in . Features include intelligent autocompletion, function signature and documentation tooltips, linting with pylint, pep8, pep257, and pyflakes, autoformatting, McCabe complexity checking, import validation, testing integration, full support for virtual environments, and project-specific build systems.

67 questions
1
vote
0 answers

How to have Anaconda autocomplete Django?

I am trying to switch from PyCharm to ST3 but I can't get the Anaconda plugin to autocomplete Django stuff. For example, within a model: content = models.TextField(blank=True, default='') Anaconda can't autocomplete this. When I type models.Tex, it…
ilovebigmacs
  • 983
  • 16
  • 28
1
vote
0 answers

How can I disable the error popup showed in Anaconda plugin for SublimeText?

When I running a test or a file and it has an error, AnacondaST3 shows this error popup: But it's annoying because I have to close it with the mouse. How can I disable this red popup?
Cleyton
  • 2,338
  • 6
  • 23
  • 39
1
vote
1 answer

Sublime Text Anaconda Invalid Syntax

I'm getting an Invalid Syntax Error at line 4 using @ operator: from numpy import array a = array([1, 2, 3, 4]) b = array([5, 6, 7, 8]) c = a @ b But the code works. How do I fix/ignore this error settings?
cocacrave
  • 2,453
  • 4
  • 18
  • 30
1
vote
0 answers

How to set up sublime-anaconda's python_interpreter for multiple platforms?

I'm setting up Anaconda for Sublime Text 3. In my Anaconda interpreter settings, I wish to specify one Python interpreter per operating system (Windows, macOS, Linux). Can this be done and if so, how? From the documentation on interpreter…
fredrik
  • 9,631
  • 16
  • 72
  • 132
1
vote
1 answer

Anaconda ignoring "extra_paths" in Sublime Text settings

I'm trying to configure Sublime Text 3 to act as my IDE for Python development, and while I've read the documentation, I'm still having problems importing extra libraries using the Anaconda.sublime-settings file. From what I've read, it should be as…
stagermane
  • 1,003
  • 2
  • 12
  • 29
1
vote
2 answers

Fix substitution of “shell_cmd” on Mac OSX in Sublime Text 3

I have a problem with my build system specified in project settings. Currently my project settings look like this { "build_systems": [ { "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)", "name": "Anaconda…
Tikhon Belousko
  • 767
  • 1
  • 9
  • 26
0
votes
1 answer

Why is my console giving me a bunch of error messages on Sublime?

After downloading Terminus (I don't know whether this has anything to do with the problem) in Sublime Text 3 I notice that when I pressed "ctrl+`" it opened the console and displayed a ton of error messages. What's going on here and how can I fix…
Max
  • 37
  • 5
0
votes
0 answers

Sublime Anaconda "Autoformatting failed, buffer not changed"

I just installed Anaconda on Sublime, when I save it says autoformatting failed, buffer not changed, therefore it will not autoformat because of that error. Even though I have autoformatting set to true in my user settings. What do I do? I Tried…
MrCruz
  • 13
  • 2
0
votes
1 answer

Anaconda worker does not start in Sublime text (Conncetion to local host timing out)

The following was the error I got Sublime Text IDAnaconda worker could not start because: connection to localhost:63828 timed out after 0.2s. tried to conned 7 times during 2.0 seconds check that there is Python process executing the anaconda …
0
votes
0 answers

sublime text 3 anaconda stop working after restart

I have installed Anaconda package using package controle. I have the following user settings for the package: { /* No Autoformatting */ "auto_formatting": false, "autoformat_ignore": [ "E309", "E501" …
Roman
  • 1,883
  • 2
  • 14
  • 26
0
votes
1 answer

sublime text 3 w Anaconda builds python, but will not display gui

I have configured Sublime Text 3 to build a python script from my installation of the Anaconda3 distribution. I have a 'hello world' python script that prints successfully. The default python build system also works. However, when I try to run a…
jrive
  • 218
  • 2
  • 3
  • 14
0
votes
2 answers

Why aren't my sublime-anaconda gutter marks showing up?

I was watching Corey Schafer's video on YouTube on 'Setting up a Python Developer Environment in sublime Text'. I installed the anaconda package, but for some reason, the gutter marks (for linting) are not showing in the line number column. I have…
0
votes
0 answers

Not working autocomplete python module in Sublime Text 3

I reinstalled Sublime Text 3. Then I install plugins and noticed, what anaconda does not complement modules python. When I write import "module" modules name is not diplayed! I already have modules: Anaconda, Jedi, Python I hope, your help me…
0
votes
2 answers

Autoformatting failed, buffer not changed : Sublime text

While setting up Python Development Environment in Sublime text 3, I wanted Auto formatting on and hence I made the following settings in Preferences > Package settings > Anaconda > Settings User { "auto_formatting": true, …
0
votes
1 answer

How to setup different Python interpreters on Sublime Text with SFTP and local?

I have a question regarding setting up different Python interpreters on sublime text when using SFTP on the remote server and the local one. The thing is, I would like to use anaconda's autocomplete function in both local and remote environments,…
BigD
  • 571
  • 7
  • 24