Due to some write permission on my new computer, I can only install to the base(root) environment. How can I add tensorflow to the root environment? Everything I have seen for install has been to create a new environment?
Due to some write permission on my new computer, I can only install to the base(root) environment. How can I add tensorflow to the root environment? Everything I have seen for install has been to create a new environment?
conda activate base
conda install -c anaconda pip
pip install tensorflow
After that, you can clone from base to create new environments.