2.2. MFiX Installation on Mac¶
MFiX is supported on the MacOS platform as of MFiX release 22.2. We provide installable packages for both Intel and M1-based Macs. In the following, arm64
refers to M1 (Apple Silicon) and x86_64
refers to Intel CPUs.
If you have an issue running or installing MFiX on your system, ask for help at Support forum.
2.2.1. Install Anaconda¶
Download the Python 3, Mac version of Anaconda (~500 MB download) or Miniconda (~50 MB download). Either the Graphical Installer or Command Line Installer would work. Choose the M1 version if you have a newer Mac with Apple Silicon CPU.
For instance, with the Anaconda Graphical Installer:
Open up Finder and navigate to the Download directory.
Double-click the downloaded file. (At the time of writing,
Anaconda3-2022.10-MacOSX-x86_64.pkg
orAnaconda3-2022.10-MacOSX-arm64.pkg
for for Graphical Installer).Follow the installation guide, using the default settings.
2.2.1.1. Alternative: Install Miniforge/mamba¶
Miniforge is a version of
miniconda which is set up by default to use the conda-forge
package
repository (which MFiX uses), and also the mamba
package manager,
which is a version of conda
that was rewritten for better
performance.
If you already have an Anaconda installation, you may continue to use it, but if you have never installed MFiX before you may want to try miniforge, for smaller download and faster installation.
Download the Mambaforge MacOSX installer for either arm64
(Apple Silicon) or x86_64
(Intel), depending on your hardware, from the Miniforge release page, and run it.
At the time of writing, the current mambaforge release is 22.11.1-2 and the files are Mambaforge-22.11.1-2-MacOSX-arm64.sh
and Mambaforge-22.11.1-2-MacOSX-x86_64.sh
.
In order to use mamba
, replace the conda
command by mamba
in the following instructions. If there is any problem with a mamba
command, you can try again with conda
- note that mamba
is still somewhat new and may occasionally exhibit bugs.
2.2.2. Install MFiX¶
After installing Anaconda or Miniforge, install MFiX:
Open a Terminal (Type “⌘-Spacebar”, type “terminal”)
Browse to MFiX Download (requires registration and login)
Copy the conda command.
Paste it in the Terminal.
If using Miniforge, change
conda
tomamba
at the start of the command.Press enter to run the command
Note
If you already installed MFiX, you may see the following message. Select y
to confirm.
WARNING: A conda environment already exists
Remove existing environment (y/[n])? y
MFiX will be installed in a new conda environment. The process may take a few minutes to complete.
2.2.3. Run MFiX¶
Open Terminal (if not open already), and run the following commands:
Run
conda activate mfix-23.3
Run
mfix⏎
Your prompt should look something like this:
> conda env list
# conda environments:
#
base * /Users/user/anaconda3
mfix-23.3 /Users/user/anaconda3/envs/mfix-23.3
> conda activate mfix-23.3
(mfix-23.3) > conda env list
# conda environments:
#
base /Users/user/anaconda3
mfix-23.3 * /Users/user/anaconda3/envs/mfix-23.3
(mfix-23.3) > mfix
You are now ready to proceed to the First tutorial and Tutorials.
Note
Activating a conda environment sets certain environment variables such as PATH in the current shell. It does not create a new shell session.
You will need to activate the environment every time before running MFiX.
2.2.4. Deactivate Conda Environment¶
After using MFiX you can just exit
to leave the Terminal session. However, if
you need to deactivate the mfix-23.3
conda environment, you can do so with:
(mfix-23.3)> conda deactivate
>
This returns to the base conda environment.
2.2.5. Uninstall MFiX¶
To remove an MFiX version installed with Conda, remove the Conda environment (if you have the environment activated, deactivate it first):
(mfix-23.3)> conda deactivate
> conda env remove -n mfix-23.3
To uninstall Anaconda entirely, remove the Anaconda directory. By default,
~/anaconda3
in your home directory. From the Terminal:
> cd ~
> rm -rf anaconda3/
If using Miniforge, note that the directory is ~/mambaforge
Note
To learn more about managing conda environments, visit the conda documentation .