How to install Panda3d on Pop!_OS

How to install Panda3d on Pop!_OS ?
I tried * [Ubuntu 24.04 LTS “Noble Numbat”] but it didn’t fly

1 Like

I am so stupid, it’s already there, natively working oob

1 Like

Also trying to build Panda3d for CachyOS
from AUR - “AUR (en) - Packages
with

paru -S package-name

the version is old 1.10.15-1
as i understand its only way install Panda3d on Arch based system?
also is that package will be updated to 1.10.16 ?
Thanks

The easier way is to install panda3d with pip. It’ll work anywhere and install the latest version.

Panda pip install is not working on (CachyOS, Pop_OS)
Its count as external managed(PEP 668) and suggest pipx (also not work)
Build from AUR works, but it’s old version

As long as you don’t run pip as root this will be fine:

pip install --user --break-system-packages panda3d

The alternative is to create a virtualenv and pip install panda3d into that.

1 Like

Thanks!