One aim behind conda environments is to rebuild/reinstall an old version of a tool/package for testing, comparing outputs, or most importantly for reproducibility purposes. Whenever I create an environment with an old version of python (say python3.6, python2.7, ...), conda is unable to find them in its channels list.
For install, the below doesn't work, even when specific channels are used upon search
conda install -c conda-forge python=3.6.7
or
conda install -c tboyer python=3.6.8
How can we install an old version of python and/or packages with their dependencies (at the time)