I can't import pyroomacoustics library

Hi. I have a situation to use pyromacoustics in the base environment of Ananconda. I leave information that may be useful (Thanks in advance):

Distributor ID: Ubuntu
Description: Ubuntu 22.04.2 LTS
Release: 22.04
Codename: jammy

conda 4.12.0

(base) my_user:~$ pip install pyroomacoustics
Collecting pyroomacoustics
Using cached pyroomacoustics-0.7.3-cp39-cp39-linux_x86_64.whl
Requirement already satisfied: numpy>=1.13.0 in ./anaconda3/lib/python3.9/site-packages (from pyroomacoustics) (1.22.4)
Requirement already satisfied: pybind11>=2.2 in ./anaconda3/lib/python3.9/site-packages (from pyroomacoustics) (2.10.3)
Requirement already satisfied: Cython in ./anaconda3/lib/python3.9/site-packages (from pyroomacoustics) (0.29.28)
Requirement already satisfied: scipy>=0.18.0 in ./anaconda3/lib/python3.9/site-packages (from pyroomacoustics) (1.7.3)
Installing collected packages: pyroomacoustics
Successfully installed pyroomacoustics-0.7.3

(base) my_user:~$ python
Python 3.9.12 (main, Apr 5 2022, 06:56:58)
[GCC 7.5.0] :: Anaconda, Inc. on linux
Type “help”, “copyright”, “credits” or “license” for more information.

I have the following error when importing pyroomacoustics to the anaconda base environment:

import pyroomacoustics as pra
Traceback (most recent call last):
File “”, line 1, in
File “/home/david/anaconda3/lib/python3.9/site-packages/pyroomacoustics/init.py”, line 124, in
from . import libroom as libroom
ImportError: /home/david/anaconda3/lib/python3.9/site-packages/pyroomacoustics/libroom.cpython-39-x86_64-linux-gnu.so: undefined symbol: _ZNSt15__exception_ptr13exception_ptr10_M_releaseEv

This looks to be a problem with the lastest version if Ubuntu and the CUDA graphic drivers - see this post:

You may need to downgrade your version of Ubuntu to a supported version for the CUDA drivers.
This doesn’t appear to be a python specific problem.