From the website : blender (not recommended)
Using the terminal (recommended) :
From the website : Animation Nodes
From our repo : Quantum Nodes
If downloaded using the terminal: it’s already done 👌
.tar.xz at the desired location (e.g. ~/software or usr/local)Launch it to check if everything went well 😉
bash file_name.shfile_name = anaconda.sh or Anaconda3-[version]-Linux-x86_64.sh, depending on wether you downloaded it using the terminal or the website.Do you wish the installer to initialize Anaconda3? → yesOnce the installation is finished: source ~/.bashrc
In this part, we will create a new conda environment and install the necessary packages for Quantum Nodes. Then, we will tell Blender to use our environment instead of the python that comes with by default.
cd /usr/share/blender/2.91/Deactivate the current python version: mv python _python
Create a new Anaconda environment:
Warning : as mentioned here, the python version (major and minor) must match the one that Blender comes with. For Blender 2.91.2, python 3.7 is ok.
conda create --name=blender python=3.7conda activate blender~/anaconda3/envs/blender/sudo ln -s ~/anaconda3/envs/blender/ pythonpip install pillowpip install scipypip install qiskitimport qiskitcd ~sudo nano .bashrcexport PYTHONNOUSERSITE=Truectrl + x then y and enter