🐍🐧 Using Anaconda on Manjaro

A. How to Install Anaconda on Manjaro

1. Install the pre-requisites

pacman -Sy libxau libxi libxss libxtst libxcursor libxcomposite libxdamage libxfixes libxrandr libxrender mesa-libgl  alsa-lib libglvnd

2. Download the anaconda installer for Linux

Anaconda Installer for Linux

3. Install the downloaded file

bash ~/Downloads/Anaconda3-2020.05-Linux-x86_64.sh

4. If the License Agreement shown just press enter or down arrow until the end, and press Q

5. If the installer ask to run “conda init”, it’s recommended to type yes

B. How to Check the List of Anaconda Envs

conda info -e

C. How to Add New Anaconda Env

conda create -n new_env_name package1 package2

D. How to Install Package to Anaconda Env

conda install pip
/home/ahmadn/anaconda3/env/your-env/ pip install package1 package2

Leave a Reply

Your email address will not be published. Required fields are marked *