JulianEberius / SublimePythonIDE

ST3 only: A rewrite of SublimeRope for ST3, uses the Rope library to add python completions and refactoring to ST3
GNU General Public License v2.0
267 stars 38 forks source link

Plugin dont work in st3 stable build 3021 #7

Closed Sinled closed 11 years ago

Sinled commented 11 years ago

I tried to install plugin via package control and by cloning repository, but results was the same . Plugin appeared in list of installed packages in package control, but dont work - no commands in sublime command panel and no options in preferences menu, there is also no errors in sublime console.

kendallsss commented 11 years ago

I have the same problem

derekleverenz commented 11 years ago

I'm not sure if this is the issue you are seeing or not, but for me it doesn't work if installed via package control (though I did see connection failed errors in the console), but it works if I clone the git repo into my packages directory. My guess is that, like package control itself, it does't play nice with being in a zip (which is what the .sublime-package files are).

JulianEberius commented 11 years ago

Hi,

No it does not work in the form of an sublime-package file, because it starts external Python processes that run the server, which means the external processes need access to the package contents. I added a .no-sublime-package file to the repo, which triggers Package Control to install the plugin as an extracted directory instead of as an sublime-package file. Installing with Package Control should now be possible. I also sent a pull request to the main channel, so it should be auto-installable under the name "Python IDE" soon.

Julian