Conda activation is failing
See original GitHub issueEnvironment data
- VS Code version: 1.3.1
- Extension version (available under the Extensions sidebar): 2019.1.0
- OS and version: Windows 10
- Python version (& distribution if applicable, e.g. Anaconda): Miniconda 3.6.6 64-bit (‘py36’: conda)
- Type of virtual environment used (N/A | venv | virtualenv | conda | …): conda
- Relevant/affected Python packages and their versions:
Expected behaviour
VSC opens interactive python using active py36 environment
Actual behaviour
- VSC is open with active (‘py36’: conda) environment
- Python: Show Python Interactive window
- Error message:
Jupyter kernel cannot be started from 'Python 3.6.6 64-bit ('py36': conda)'. Using closest match Python 3.6.6 64-bit ('mro': conda) instead.
Steps to reproduce:
- Open VSC in empty directory
- Python: Select Interpreter
- select ‘py36’
- Python: Show Python Interactive window
Logs
Relevant Part from Developer Tools > Console Log:
Python Extension: Python Extension (Error in getActivatedEnvironmentVariables, method:getActivatedEnvironmentVariables):
Error: Command failed:
C:/Users/marek.ozana.XCF/AppData/Local/Continuum/miniconda3/envs/py36/Scripts/activate && conda activate py36 && echo 'e8b39361-0157-4923-80e1-22d70d46dee6' && python C:/Users/marek.ozana.XCF/.vscode/extensions/ms-python.python-2019.1.0/pythonFiles/printEnvVariables.py
Could not find conda environment: py36
You can list all discoverable environments with `conda info --envs`.
at ChildProcess.exithandler (child_process.js:303:12)
at ChildProcess.emit (events.js:182:13)
at maybeClose (internal/child_process.js:961:16)
at Process.ChildProcess._handle.onexit (internal/child_process.js:248:5)
t.log @ console.ts:134
The problem seems to be that process is already in ‘py36’ environment and thus fails when trying to activate py36 again:
C:/Users/marek.ozana.XCF/AppData/Local/Continuum/miniconda3/envs/py36/Scripts/activate && conda activate py36
Issue Analytics
- State:
- Created 5 years ago
- Comments:30
Top Results From Across the Web
anaconda - Conda activate not working? - Stack Overflow
My PATH environment variable was set properly so conda activate base did not raise any error but quietly failed.
Read more >"conda activate" fails because shell is not initialized · Issue ...
Hi, After updating to conda 4.6.1, I'm getting this error when I try to build a recipe: CommandNotFoundError: Your shell has not been ......
Read more >Troubleshooting — conda 22.11.1.post16+ce4e810c9 ...
The hash is reset by conda activate or by hash -r in bash or rehash in zsh. Programs fail due to invoking conda...
Read more >Conda environment activation failing in PowerShell : PY-56890
Trying to open a PowerShell terminal (activate virtualenv is enabled) in Pycharm 2022.2 Professional (PY-222.3345.131) fails with the below
Read more >Conda Issues - MOOSE framework
If conda activate moose is failing like so: CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'. To initialize your...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi Don,Yes activation of the environment form console works fine.
Comment whether or not this issue is another bug
I think this issue is the same as reported above:
C:/Users/mare.../envs/bug_env/Scripts/activate
conda activate bug_env
See the full log file in the attachment: VSCode-bug_env_log.log
Also if one tries to start python terminal from bug_env one gets familiar error:
and when listing conda environments in this terminal window one gets:
so bug_env is activated and fails to activate itself again.
All of the above works fine in ok_env which differs just by not having conda-build:
I think you can disable the Interactive Editor from the settings:
python.dataScience.enabled
is the key.