


To create a new conda environment with a specific version of Python (in this example, Python 3.9), run this line from your terminal: conda create -n myenv python=3.9 I do not recommend Anaconda.Ĭreating conda environments is extremely easy. It automatically installs a lot of Python packages into new conda environments, so it tends to create large and bloated environments.
#Finale mac m1 install#
Creating Python environments using condaįollow these instructions to install conda and get started with environments.

Note: this article is geared towards Mac users, and especially Apple Silicon Mac users, but the basic conda instructions will work on all platforms. It allows you to maintain separate environments for different projects - each environment can contain different packages, different package versions, and even different Python versions - and it’s quick and easy to switch between them. Conda is a very popular package and environment management tool (we’ll be discussing the environment management aspect).
#Finale mac m1 code#
I encounter this problem frequently as a data scientist - I frequently return to old projects and code so I need an easy way to manage multiple environments with different Python versions. When starting new projects you’ll want to take advantage of the latest features ( Python 3.10 was recently released!), but you’ll also need to maintain older projects that use previous versions. If you work with Python enough, you’ll eventually need to manage environments with different Python versions.
