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
2
votes
2 answers

Disable Anaconda on all files of a directory

I'm using Anaconda plugin for Sublime Text, and I would like to open the code files inside a directory without getting all the warnings/errors highlights from this plugin. Is there a way to disable Anaconda for all files in a project's subdirectory?…
dolma33
  • 4,133
  • 6
  • 28
  • 48
2
votes
2 answers

Sublime Text 3 plugin, Anaconda, doesn't work

I've installed anaconda plugin using package control in sublime text 3, I've python 33 and anaconda installed separately and their path has been added to the PATH variable in MS Windows 7 (if matters). every plugin works fine except anaconda plugin…
SddS
  • 587
  • 1
  • 5
  • 17
1
vote
1 answer

Anaconda's autocomplete function Sublime Text not working

I have installed the Anaconda plugin in Sublime Text Build 4126 and it doesn't work its autocomplete function. I don't know why. Anaconda's linting works indeed. Python version: 3.10 Could you help please to detect and fix the problem?
1
vote
0 answers

Sublime Text Editor Anaconda package Autoformat PEP8 Errors doesn't automatically reformat comments that are too long

I'm trying the STE Anaconda's autoformatting feature and it works well with every other PEP8 feature but seems to not change any lines that are like: def foo(): # asasasasasasasasasasasasasasasasasasasasasasasasasasasasasasasasasasasasasasasasasas …
1
vote
1 answer

Sublime Anaconda package abusive auto_complete (remove specific trigger)

I am using the Anaconda package for Sublime Text. Everything is working perfectly, I love it. In truth, it works a bit too well, especially the auto_complete. The auto_complete being zealous Every time I write a colon (:) after a statement needing…
Nerra
  • 41
  • 6
1
vote
0 answers

How to disable rectangular boxes in Sublime Text?

I am unable to get rid of these rectangular boxes, I guess they started appearing after I set Anaconda as my build Package.
Yesh
  • 41
  • 4
1
vote
1 answer

Sublime Text + Anaconda not indenting Python code correctly

Running: Sublime Text 3.2.2 Python 3.8.2 Anaconda's autoformat feature reindents the code below as follows: counter = 0 def print_this(): print("Hello World.") return def main(counter): if counter < 10: …
1
vote
1 answer

How to disable Highlighting on sublime text 3?

I have sublime text 3 installed for python programs, with only three packages installed, those being Anaconda, package control itself and SideBarEnhancements. Also I haven't changed any config. It's incredibly annoying to write a code with…
1
vote
1 answer

Linting customization in Anaconda Package Sublime

I am using the Anaconda package for Sublime 3, and it works perfectly. My only problem is that linting highlights all kind of errors, warnings and PEP8 recommendations in the same color, white. I would like to change it so errors are red, warnings…
Frotaur
  • 113
  • 8
1
vote
1 answer

Kernel Error in Anaconda Python Jupyter Notebook

I have started learning python and in the initial stage i am not be able to execute any code on python. While searching over the google, i found that it occurs due to kernel error and same is reflecting on the top and trust box is disabled. I have…
King
  • 13
  • 4
1
vote
0 answers

Not Able to Launch jupyter from Anaconda 2019.03

I am working on Win10, 64bit. I have installed "Anaconda3-2019.03-Windows-x86_64". When I am going to launch Jupyter from Anaconda,the following error occurs: Traceback (most recent call last): File…
nodev_101
  • 99
  • 10
1
vote
2 answers

Sublime text 3 and anaconda, python wrong path

I'm new to python and sublime. I downloaded anaconda3-5.2, the full version with python3.6, and sublime text 3 on my 64bit machine windows 10. When i start my sublime text 3 i imediately get the Error: I really don't know how to solve this. It…
Jeroen F
  • 21
  • 1
  • 4
1
vote
0 answers

How to set a relative path to a python interpreter in sublime's Anaconda IDE

I use a portable install of SublimeText on a USB drive with the Anaconda plugin installed for python work. This tells me how to change which python interpreter to use. My issue is that I want to carry a version of python with me on the same USB…
1
vote
1 answer

Using Anaconda python directory in Atom IDE

I have installed Anaconda on my Windows 10 system. Now I want to use python in newly installed Atom IDE. Atom cannot find python directory as it's not added to the environment variable path. I installed python 3.6 separately and added it to path…
1
vote
1 answer

Autoinsertion of parenthesis for callables

I have grown keen on Sublime Text 3. But one feature I painfully miss is the automatic insertion of parenthesis upon choosing a callable from the autocomplete/hint box. Sublime/Anaconda give me print but not print (). Ideally the caret would be…