You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is the expected output? What do you see instead?
Please provide any additional information below
File "D:\pythonIDEAnaconda\lib\site-packages\spyder\plugins\editor.py", line 1840, in load
self.edit_filetypes = get_edit_filetypes()
File "D:\pythonIDEAnaconda\lib\site-packages\spyder\config\utils.py", line 119, in get_edit_filetypes
pygments_exts = get_pygments_extensions()
File "D:\pythonIDEAnaconda\lib\site-packages\spyder\config\utils.py", line 86, in get_pygments_extensions
for lx in lexers.get_all_lexers():
File "D:\pythonIDEAnaconda\lib\site-packages\pygments\lexers_init.py", line 53, in get_all_lexers
for lexer in find_plugin_lexers():
File "D:\pythonIDEAnaconda\lib\site-packages\pygments\plugin.py", line 53, in find_plugin_lexers
yield entrypoint.load()
File "D:\pythonIDEAnaconda\lib\site-packages\pkg_resources_init.py", line 2404, in load
self.require(*args, **kwargs)
File "D:\pythonIDEAnaconda\lib\site-packages\pkg_resources_init_.py", line 2427, in require
items = working_set.resolve(reqs, env, installer, extras=self.extras)
File "D:\pythonIDEAnaconda\lib\site-packages\pkg_resources_init_.py", line 875, in resolve
raise VersionConflict(dist, req).with_context(dependent_req)
pkg_resources.VersionConflict: (jedi 0.9.0 (d:\pythonideanaconda\lib\si
The text was updated successfully, but these errors were encountered:
Thanks for reporting. The error traceback that was posted is incomplete. However, it is very likely a duplicate of e.g. #5673 , an error that's been reported numerous times now. As the full error message states, Jedi is only compatible with parso 0.1.0, not 0.1.1. Therefore, you can update jedi to the latest version with conda update jedi (or with pip, if you use that instead); (you can also downgrade to parso 0.1.0 with e.g. conda install parso=0.1.0 ) and so this issue will be closed.
Description
What steps will reproduce the problem?
What is the expected output? What do you see instead?
Please provide any additional information below
File "D:\pythonIDEAnaconda\lib\site-packages\spyder\plugins\editor.py", line 1840, in load
self.edit_filetypes = get_edit_filetypes()
File "D:\pythonIDEAnaconda\lib\site-packages\spyder\config\utils.py", line 119, in get_edit_filetypes
pygments_exts = get_pygments_extensions()
File "D:\pythonIDEAnaconda\lib\site-packages\spyder\config\utils.py", line 86, in get_pygments_extensions
for lx in lexers.get_all_lexers():
File "D:\pythonIDEAnaconda\lib\site-packages\pygments\lexers_init.py", line 53, in get_all_lexers
for lexer in find_plugin_lexers():
File "D:\pythonIDEAnaconda\lib\site-packages\pygments\plugin.py", line 53, in find_plugin_lexers
yield entrypoint.load()
File "D:\pythonIDEAnaconda\lib\site-packages\pkg_resources_init.py", line 2404, in load
self.require(*args, **kwargs)
File "D:\pythonIDEAnaconda\lib\site-packages\pkg_resources_init_.py", line 2427, in require
items = working_set.resolve(reqs, env, installer, extras=self.extras)
File "D:\pythonIDEAnaconda\lib\site-packages\pkg_resources_init_.py", line 875, in resolve
raise VersionConflict(dist, req).with_context(dependent_req)
pkg_resources.VersionConflict: (jedi 0.9.0 (d:\pythonideanaconda\lib\si
The text was updated successfully, but these errors were encountered: