I recently picked up the python mastery bundle from humble bundle and one of the books (about larger-scale projects) has its exercises built around using anaconda virtual environments. I am able to create a project using:
% conda create -n project0 —channel=conda-forge python=3.12
But when I try to activate project0 I get an error that “activate” is an invalid choice. When I tried to initialize conda for Bash, my terminal behaved like the default echo for typed characters turned off.
What command did you use to activate project0?
conda activate project0
I don’t use conda actually (I did in the past), but I think you could try:
conda shell.bash activate project0
You must see the paths and config used to activate the environment. Check all is fine.
Source: https://docs.conda.io/projects/conda/en/latest/dev-guide/deep-dives/activation.html