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
line 517). Set the "initializationOptions" > "workspace" > "environmentPath" your desired value, and it should work. Kindly let me know if you face any issues!
def update_options(options, patch):
for k in patch:
if k in options and type(options[k]) != dict:
options[k] = patch[k]
elif k in options and type(options[k]) == dict:
update_options(options[k], patch[k])
else:
options[k] = patch[k]
Please do share what would be your preferred way to provide this configuration?
LakshyAAAgrawal
changed the title
Python LSP
Customizable InitializeOptions configuration for each language server
Feb 21, 2025
when using python LSP how to provide workspace.environmentPath?
see https://github.com/pappasam/jedi-language-server
The text was updated successfully, but these errors were encountered: