I switched to Linux completely 4months ago. I have been able to install Anaconda in my Ubuntu 20.04, but I observed something which is like a headache.
After setting up an environment, I needed to change the Python version it uses from 3.10 to 3.8. So I used these commands:
conda activate my_env
conda install python=3.8
which is the standard way of doing it in Anaconda.
However, I observed that it downloaded new Python 3.8 packages into the environment, despite the fact that I had Python 3.8 already pre-installed on my system.
How do I configure my conda
environment to use the existing Python version already installed on my system without downloading a copy from the internet?