Old version of python

hi all,
i downloaded the latest version of anaconda, which by default includes python 3.11 (i think), but i need python 3.8. Could anyone please help me with this? the option of downloading an old version was not available in the download centre. I use Macos

thanks
ibrahim

You can create an environment that contains Python 3.8, e.g.

conda create -n py38 python=3.8

Then you can install any other packages you need, e.g.

conda activate py38
conda install package1 package2 ...