I am getting this same issue when using python3.8 rather than 3.3
(using a .python-version
file 3.8
)
Changing it back to 3.3
fixes the issue
As 3.3, then, make the change to 3.8:
(This true in a very minimum setup) - a project folder with:
.python-version
as 3.8
dependencies.json
as
{
"*": {
"*": [
"requests"
]
}
}
test.py
as
import sublime
import sublime_plugin
import requests
class TestCommand(sublime_plugin.TextCommand):
def run(self, edit):
print(requests.get('http://example.com/'))
Hopefully that helps debugging. Any thoughts?