I would like to test if something works with a previous version of Anaconda. Is there a way for me to install a specific version?
Asked
Active
Viewed 1.3k times
3 Answers
4
There's no need to download an old version of Anaconda installation package. Just create an environment and install an old version of Python.
# create an environment with old version Python, conda
conda create -n venv-name python=3.6 conda=4.6
conda activate venv-name
conda deactivate venv-name
conda is both a powerful package manager and environment manager. Creating different environments with different versions of Python installed within is a very basic function of conda.
- base environment = Python +
condapackage - Anaconda = base env + meta package
anaconda. - meta package
anaconda= 260+ other packages
anaconda is a meta package, which does not contain actual software and simply depends on other packages to be installed.
Extended Reading
Simba
- 17,532
- 3
- 48
- 64