-
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
Reliably and quickly fetch activated environment variables for conda #19987
Comments
#19967 is not fixed, I am still getting the same error on prerelease
|
That is not the same error as #19967. Please open a new issue and we'll be happy to look into it. |
…les (microsoft/vscode-python#19986) Reverts microsoft/vscode-python#19819 Closes microsoft/vscode-python#19967 Until we have a better activation story: microsoft/vscode-python#11039, where we potentially get rid of using `conda activate` commands, use `conda run` for fetching environment variables even though it's slower. Created microsoft/vscode-python#19987 for tackling it in the future. FYI @DonJayamanne
conda run
is more reliable thanconda activate
: #19967conda activate
command is much faster thanconda run
: conda/conda#11814We could do a mixture of these two approaches in the extension and return which ever came back with the environment variables faster.
However note this can change with #11039, where we potentially get rid of using
conda activate
commands, so it's best to tackle this issue after that.The text was updated successfully, but these errors were encountered: