Cu unele cercetări văd următoarele. ArchLinux AUR are PKGBUILD pentru Loturi care menţionează python-pyglm.
Deci, modalitatea posibilă de a obține cele mai noi parcele compilate este să creați mai întâi pachetul deb pentru biblioteca PyGLM:
sudo apt-get update
sudo apt-get install devscripts debhelper python3-all-dev python3-setuptools dh-python
cd ~/Descărcări
clona git https://github.com/N0rbert/PyGLM.git
cd PyGLM
debuild -b -uc -us
sudo apt-get install ../python3-pyglm_2.3.1_amd64.deb
Alternativ, puteți folosi și a PPA pentru python3-pyglm
. Acest PPA poate fi folosit și ca o dependență a altor proiecte care necesită acest pachet.
și apoi compilați Plots pe Ubuntu 20.04 LTS după cum urmează:
sudo apt-get update
sudo apt-get install devscripts debhelper python3-all-dev python3-setuptools dh-python python3-opengl libglib2.0-dev gobject-introspection python3-jinja2 python3-numpy python3-lark-test python3-lark-free python
cd ~/Descărcări
git clone https://github.com/apandada1/Plots
cd Plots
debuild -b -uc -us
sudo apt-get install ../plots_0.5.1_all.deb
Ce este interesant - original 0.5.1 din 28 ianuarie Compilează în mod normal pe Ubuntu 20.04 LTS și 21.04 de către
sudo apt-get update
sudo apt-get install devscripts debhelper python3-all-dev python3-setuptools dh-python python3-opengl libglib2.0-dev gobject-introspection python3-jinja2 python3-numpy python3-lark python
cd ~/Descărcări
wget https://github.com/alexhuntley/Plots/archive/v0.5.1.tar.gz
tar -xf v0.5.1.tar.gz
cd Plots-0.5.1/
debuild -b -uc -us
deoarece nu depinde de PyGLM.