+1 vote
in Operating Systems by (16.0k points)
recategorized by
I am trying to create a Conda environment using Python 3.11, however, by default, it creates an environment using Python 3.12. How can I force Conda to use Python 3.11 for the environment?

1 Answer

+3 votes
by (64.7k points)
selected by
 
Best answer

You can force Conda to use a specific Python version by passing "Python=your_version" as a parameter.

Here is an example of creating an environment 'myenv' with Python 3.11 installed.

conda create --name myenv python=3.11

Related questions

+1 vote
1 answer
+1 vote
1 answer
+1 vote
1 answer
+1 vote
1 answer
+3 votes
1 answer

...