-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve performance of automatic environment detection #372
Comments
Hi, @DonJayamanne , I don't think detect python env is a good decision. As an user I always set the env by myself. Maybe there are so many python: (2.x OR 3.x) * (32bit OR 64bit) * (install OR virture env)
|
Please create a separate issue for performance issues faced in intellisense. If you are experiencing performance issues with auto detection of the interpreter, them please create an issue for that as well.
So please create issues for this with some measurable data. As you can see we are taking steps to improve the performance around intellisense with PRs such as the following: #368 |
* Add support for pip and/or conda when installing modules * Fix display versions for environments (fixes #378) * Refactor installer to use the pip/conda module installer for installation of modules * Performance improvement of detecting virtual env and setting it (fixes #372) * Code refactor to ensure interpreter locators use the new DI framework * Fixes #266
When extension loads, it attempts to automatically set the workspace interpreter.
However this slows down the load times of the extension.
Optimizations: manually construct
VirtualEnvService
passing in the current workspace.The text was updated successfully, but these errors were encountered: