Install#
Prerequisites#
For installing femder you’ll need:
Python >= 3.9, < 3.12
Note
If you’re a beginner at programming we strongly recommend you to
use Anaconda Distribution - it includes
Python, NumPy,
and many other commonly used packages for scientific computing and data science.
It also includes conda,
a package manager
that makes it easier to install and manage other packages you may need.
Conda#
conda is a package manager that comes with Anaconda Distribution,
Miniconda and Miniforge.
For installing femder using conda follow the steps below:
You’ll need a shell with
condain its PATH:Note for Windows users
If you’re using Windows and have installed Anaconda Distribution, Miniconda, or Miniforge, you’ll have access to the Anaconda Prompt, Anaconda Prompt (miniconda3), or Miniforge Prompt, respectively. Search for them under Windows start menu.
Create and activate your
condaenvironment:You MUST use Python >= 3.9, < 3.12.
$ conda create -n myenv python=3.9 $ conda activate myenv
Note
Creating a new
condaenvironment for each project you work on is considered a best practice, ensuring better management of dependencies and promoting a cleaner development workflow.Install
femderusingpip:$ pip install femder
Pip#
Pip is a package manager that comes with Python.
For installing femder using pip follow the steps below:
Optional step (recommended) - consider using a
virtual environment:Note
Utilizing a virtual environment with
pipis recommended as it allows for the isolation of project dependencies, enhancing dependency management and facilitating working across diverse projects.Create your virtual environment as usual:
$ python -m venv venvActivate the virtual environment:
If you use Windows:
> .\venv\Scripts\activateIf you use macOS or a Linux distribution:
$ source venv/bin/activate
Install
femderusingpip:$ pip install femder