Installation#
Before installing Deemian, please ensure that your machine has Python 3.10 or 3.11 installed. If you don’t have it, you can install Conda or Mamba, which are the easiest solutions.
After that, you need to create a virtual environment for Deemian installation so that your base Python environment remains clean. If you have Python 3.10 or 3.11, you can use the venv module. Alternatively, you can use Conda or Mamba.
python -m venv venv
conda create -n learn_deemian python=3.10
mamba create -n learn_deemian python=3.10
Then activate the virtual environment:
source venv/bin/activate
venv\Scripts\activate.bat
venv\Scripts\Activate.ps1
conda activate learn_deemian
mamba activate learn_deemian
To install Deemian, download the latest version from the Deemian release page.
Extract the zip / tar.gz file and run the pip install command, using the directory name as the last argument:
pip install deemian-0.1.0
Now, Deemian is ready to use in your virtual environment. You can check out the Getting Started or Tutorial and follow the instructions to ensure that it is installed correctly.