-
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
Conda Issues #5344
Comments
Suggestions/Notes:
Conda notes on activation:
|
TODO** Conda Requirements**
|
Note: There are some limitations on |
@karthiknadig what are the limitations/issues? Please could you provide more information. |
Closing as stale. |
Use
conda info
conda info
work on a vanilla install of Conda Spike - Can we useconda list
andconda info
all the info we need to work with conda #6882Use
conda activate
conda activate
to activate conda environments (i.e. no more calls tosource
) Spike - Use only conda activate, stop calling source #8864Use
conda run
PythonExecutionFactory
andPythonExecutionService
fix the following (Update PythonExecutionService to support "conda run". #7696):exec()
(Stop using "exec()" in the extension. #7697):installers (partial): In one case we usesudo
and inpoetry
case we use path to binary directly. So this could not be addressed directly.debugger (partial): python debug adapter uses adapter descriptor. So no changes were madeinterpreter discovery (partial): Discussed with Don and should not be switched to python execution factory.PythonExecutionFactory
for running pythonpipenv shell
#4203 )Verifying conda work is done
Basically we are no longer doing any shenanigans behind conda's back to support it and we are using the provided tooling as expected.
conda
command to get the list of environmentsconda activate
to activate environments (i.e. don't usesource
)conda run
The text was updated successfully, but these errors were encountered: