I was suggested to conda create a new environment for installing tensorflow
First question, in general:
Why do environment exist in conda or in Python ? (Why) is it preferable to install a new library in a new environment ?
Here, in practice:
After install conda shell says $conda activate test
will activate the test
environment. Does it mean i can't access the lib in Spyder unless i activate test
in conda shell ? Do i need to restart python shell to see the lib ? I can't access the lib (no module named tensorflow
) and I assume it has to do with python not finding the path.