Install specific version of python in conda virtual environment

At times you may need to use different versions of python for your different projects. Happened with me too I had to use 3.10 for a project so I was able to manage with two below steps.

  1. conda activate environment_name
  2. conda install python=3.10

Leave a comment