Issue
I have tried to put the exact version on the command like:
conda create --name tst python==2.7.12
which resulted:
PackagesNotFoundError: The following packages are not available from current channels:
So I found this: https://www.python.org/downloads/release/python-2712/
And I wanted to know how to create conda env with this tarball file.
Note: I'm running on wsl env : Ubuntu 5.4.72-microsoft-standard-WSL2
Solution
Replace python==X
with python=X
(where X is the version) and for the version from 2.7.12
to 2.7
conda create --name tst python=2.7
Answered By - Mazen Answer Checked By - Senaida (WPSolving Volunteer)