trying to install conda with python 2.7 on macbook with M1 processor
conda create --name py27 python=2.7
results in:
No match found for: 2.7.
** I tryied another way:
conda create --name py27
conda activate py27
python --version
Python 2.7.18
and then (since I need pip):
conda install pip=20
python --version
Python 3.10.1
Is there a way to solve this or does conda on arm only supports python 3?