Installation
Conda Installation
Download Miniconda Installer
Visit the Miniconda Downloads page.
Select the installer for Python 3.x as per your requirements.
Open a Terminal
Open a terminal window on Linux by pressing
Ctrl + Alt + T, or search for “Terminal” in the applications menu.
Navigate to Download Directory
cd ~/Downloads
Change to the directory where the installer was downloaded, usually the
Downloadsdirectory.Make the Installer Executable
Make the downloaded script executable. Replace
Miniconda3-latest-Linux-x86_64.shwith the actual downloaded file name.chmod +x Miniconda3-latest-Linux-x86_64.sh
Run the Installer
Execute the installer script and follow the on-screen instructions.
./Miniconda3-latest-Linux-x86_64.sh
You’ll need to approve the license agreement and choose the installation location.
Initialize Conda
After installation, initialize Miniconda to add Conda to your PATH.
Close and Reopen Your Terminal
To apply the changes, close and reopen your terminal window.
Creating Environment
Create python environment. We support using python 3.10 through python 3.12.
Note
The name of the conda environment in this example is kaipy.
conda create --name kaipy python=3.12
Installing kaipy
To install kaipy, run the following command:
pip install kaipy