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
0
votes
1 answer

Why do I get a ModuleNotFoundError: No module named 'keras' in SublimeText?

Beginner here! I've successfully (I think) set up and installed all the required libraries for Deep Learning environment with Anaconda according to this post but now when I build the following code in SublimeText: from numpy import loadtxt from…
0
votes
1 answer

Pandas import (Sublime Text 3): Missing required dependencies ['pytz'] - but only in one directory

I'm running Sublime Text 3 with an Anaconda build system on Win 7. I've been running Python (3.4) scripts that import pandas (0.20.3) fine for the last 6 months, but about two hours ago I started receiving the following error: ImportError: Missing…
Morris
  • 218
  • 1
  • 10
0
votes
1 answer

Remove Sublime Text red pop-ups

How do I remove the irritating red pop-up errors that now appear on Sublime Text? For example in this image: I have seen people refer to these as issues with Typescript but I am on Ubuntu and don't seem to have this package installed. I have…
0
votes
0 answers

How to configure Sublime Text's Anaconda package's autocomplete so that it give 'print()' instead of 'print'?

I've tried many times playing around with both the user and default settings but to no avail. The anaconda package is great and they say that it is really configurable but I don't know how and can't seem to find anyone who can address my problem.
0
votes
0 answers

sublime anaconda can't autocomplete on dot

I follow the document: http://damnwidget.github.io/anaconda/IDE/#toc_3 Create a file which name Python.sublime-settings in the Packages/User and add following { "auto_complete_triggers": [{"selector": "source.python - string - comment -…
cgy-cn
  • 35
  • 1
  • 1
  • 10
0
votes
1 answer

setting extra paths in sublime text 3 error expected comma or closing bracket

I'm trying to add an extra path to sublime in anaconda settings, but i get this error, what I'm doing wrong with the settings ?? maybe I'm missing a coma but i don't understand this kind of formatting .. any idea? { "auto_formatting": false, …
0
votes
0 answers

Python module installation issue

I am using anaconda3.6 and want to add various modules in it. but every time when I try using "pip" or by downloading file from Github(such as gdal-trump) I am getting an error: command 'C:\Program Files (x86)\Microsoft Visual Studio …
0
votes
2 answers

Sublime Text 3: Anaconda 'Goto Definition' opening a blank window

In Sublime Text 3, this is the content of my User Settings (config) file, found through Sublime Text > Preferences > Package Settings > Anaconda > Settings - User: { "python_interpreter": "/usr/local/bin/python3", "anaconda_linting": false, …
BluePython
  • 1,635
  • 3
  • 24
  • 35
0
votes
1 answer

AutoPEP8, Anaconda, Sublime Text 3 Inconsistent Error Reporting

Please reference the attached screenshot. I am working on a scrapy pipeline. I am using Sublime Text 3 with Anaconda/AutoPep8. I just moved over from ST2 where I did not have AutoPep8 or Anaconda. The huge white dot is telling me that this line has…
Malik A. Rumi
  • 1,855
  • 4
  • 25
  • 36
0
votes
0 answers

Sublime Text 3 - Different Anacondas?

I just got myself ST3 and followed some tutorials, all of which recommended to install Anaconda via the ST3 package control: CTRL+SHIFT+P -> "install" -> "anaconda_go". I then tried to use the packages that come with anaconda (i.e. NumPy)…
0
votes
1 answer

How to install Anaconda by package control in sublime text 3?

It's showing me There are no packages available for installation. what should I do ?
Praveen Meghwal
  • 394
  • 3
  • 4
0
votes
1 answer

Sublime Text 3, Windows, Anaconda - __init__() got an unexpected keyword argument 'python_interpreter'

Sublime Text 3, Windows 7, Anaconda - Using anaconda because I can't install scipy. Having trouble setting up my Anaconda.sublime-settings and running python scripts in anaconda in general. When I build with anaconda in sublime, here is my console.…
0
votes
1 answer

how to create a new interlaced image to two picture with python opencv and anaconda

I would like to create a new interlaced image where the odd rows belong to one image and the even rows to the other image. I am trying to do that with python and openCv and numpy! Reading the one images and with a loop i try to write the values in…
0
votes
1 answer

Can a second shortcut key be added to an Anaconda keymap?

The following entry exists in the default keymap for the Anaconda plugin for Sublime (it brings up the documentation for a method): { command": "anaconda_doc", "keys" ["ctrl+alt+d"], "context: [ {"key": "selector", "operator": "equal",…
user3092503
0
votes
1 answer

Sublime Text 3 Python 3.5.2 can not build

Some of simple codes run without problem. But I tried to run this simple code on sublime but I got this error. I run same code from command line without a problem. I also install anaconda. number1 = 23 running = True while running: guess =…
Mobile Gamer
  • 23
  • 1
  • 3