2

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 which doesn't work at all! It has been install and I can see the user and default settings. But none of key bindings works. The lint capability is also doesn't work.

I've tried external path in the user setting via adding my anaconda installation path but it seems Sublime doesn't accept windows path such as :

C:\Programs\Anaconda

I've also tried re-installing but nothing has changed.

shilovk
  • 7,603
  • 15
  • 54
  • 63
SddS
  • 577
  • 1
  • 5
  • 16

2 Answers2

4

This was a known issue already fixed in the last version. Just upgrade the plugin using Package Control.

Refer to https://github.com/DamnWidget/anaconda/issues/35 for more details

DamnWidget
  • 1,207
  • 1
  • 10
  • 16
  • 1
    Yeap, the problem is solved.thanks, unfortunately I don't have enough reputation for a +1 ;-) – SddS Aug 29 '13 at 10:04
2

It is an old question but I struggled a bit with it.

If you are using Windows executable, make sure to use slash after each backslash

C:\/Python34\/python.exe

Without the slash, the anaconda will not take the executable's path into account

enter image description here

Andy K
  • 4,468
  • 9
  • 42
  • 73