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.

66 questions
35
votes
5 answers

How can I ignore a lint error for a line with Sublime Text 3 Anaconda?

I'm using Anaconda with Sublime text 3. I have left the lint settings as default with the exception of the following overrides which I've included in a .sublime-project file. "settings": { "anaconda_gutter_marks": true, …
Daniel Rucci
  • 2,662
  • 2
  • 30
  • 42
17
votes
1 answer

How to fix the Anaconda linter showing errors for f-strings in Sublime Text 3?

The error shown is simply "[E]" so I'm not sure how to exempt this error in the Anaconda preferences. e.g. the linter error for print(f"Hello, world!") says "[E] invalid syntax"
user5289979
  • 171
  • 1
  • 3
8
votes
3 answers

anaconda+sublimetext, reports type hinting as errors

I have two python projects in sublimetext3 with anaconda. For some myterious reasons only in one of them anaconda reports type hinting (PEP 0484) as "invalid syntax" errors (for both: parameter and function types). What can be the reason?
ardabro
  • 1,446
  • 13
  • 24
7
votes
4 answers

Sublime Text 3: Anaconda show lint errors hotkey?

How do I add a hotkey to view lint errors? It shows me that there is an error, but doesn't tell me what it is. If I want to see the errors I have to right click -> Anaconda -> show error list which seems very inconvenient. I think it would be nice…
John Smith
  • 1,640
  • 2
  • 15
  • 29
4
votes
1 answer

Sublime text 3 Anaconda goto definition not working with Django

I'm using the plugin for Python development in Sublime Text 3 Anaconda. Everything works fine, but now that I have a django project, I want to also take advantage of Anaconda's features like goto definition. Sadly, I can't get it to work. I tried…
Santiago Agüero
  • 2,933
  • 7
  • 23
  • 36
3
votes
5 answers

OSError: [Errno 'jupyter-notebook' not found] 2

Hi I have installed "Anaconda3-4.3.1-Windows-x86_64" in my desktop but i get below error when I run the command "jupyter notebook" from CMD. Error: C:\Users\my pc>jupyter notebook Traceback (most recent call last): File…
pratham
  • 51
  • 1
  • 5
3
votes
1 answer

How do I properly use virtualenv with Anaconda?

I am on OSX and I have two virtual environments setup for Python 2.7 and 3.x These were installed using homebrew following this guide, which seems to setup my bash environment correctly. I am encountering a brick wall with the anaconda user…
TTT
  • 1,750
  • 14
  • 30
3
votes
1 answer

Unicode Encode Error in Sublime Text 3 console

I’m always getting a 'UnicodeEncodeError: 'ascii' codec can't encode character '\xf6' in position 0: ordinal not in range(128)' in the sublime text 3 console when trying to print a non-ascii character. I'm using Anaconda Python Builder to build the…
Baili
  • 149
  • 1
  • 12
3
votes
1 answer

Disable Information/Definition boxes in Anaconda in Sublime Text 3

I recently installed Anaconda3 in ST3 in Ubuntu 14.04, after that I am facing following issues:   Shows definition of in-built functions:   Shows random information after completion of line:   I want to disable this feature of anaconda but I…
Kautsya Kanu
  • 411
  • 1
  • 5
  • 18
2
votes
0 answers

can't find or open anaconda navigator on windows

i'm trying to search for anaconda that i've installed , i can't find it in the start menu ,i've tried to search it in anaconda files it shows me a json file and i can't open the app at all , also my cmd can't recognize the python\py con\ at all ,…
reeena11
  • 95
  • 9
2
votes
0 answers

Anaconda Python IDE for Sublime Text 3 - Can't get documentation for libraries installed only in local virtual environment

Just set up Anaconda Package for Sublime Text 3 and everything is working as expected. I can access documentation strings via ctrl + alt + d, but only for classes/functions that belong to globally-installed python libraries. For items belonging to…
2
votes
0 answers

SublimeText3 with Python3 and Anaconda-ST3 plugin

I have been trying to follow Dan Bader's setup and he uses SublimeLinter with Flake8 and Anaconda Plug-in (not the distro). The functionality I can't achieve is the docstring popup and I noticed it is because my Sublime Text 3 is not noticing my…
BluePython
  • 1,495
  • 2
  • 19
  • 34
2
votes
0 answers

How to debug with anaconda after install in sublime text 3?

I have installed Anaconda using Package Manager on ST3. In looking at a Python source file I see some fancy new formatting options and the Command Palette has a variety of Anaconda commands, none of which seem to describe running a program or…
WesR
  • 855
  • 1
  • 10
  • 21
2
votes
3 answers

Python 3 inside Sublime Text with Anaconda on a mac

I cannot seem to get Python3 interpreter to build inside sublime text using Anaconda. I have tried all possible configurations but to no avail, the system does not seem recognize installed libraries and throws an importError back at me. this is my…
Suraj Sharma
  • 83
  • 2
  • 8
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
  • 3,485
  • 6
  • 24
  • 47
1
2 3 4 5