Importing torch causes segfault when using python installed with conda

I’m trying to debug a segfault caused by importing torch.
Using GDB gives the following:

(dev) root@myhost:/workspace/project/distributed# gdb python3
[GDB license]

For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from python3...
(gdb) r -c "import torch"
Starting program: /opt/conda/envs/dev/bin/python3 -c "import torch"
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".

Program received signal SIGSEGV, Segmentation fault.
type_qualname (type=0x555558aad9e0, context=0x0)
    at /usr/local/src/conda/python-3.9.15/Objects/typeobject.c:481
481	/usr/local/src/conda/python-3.9.15/Objects/typeobject.c: No such file or directory.

I’m using a conda environment with python=3.9.
Has anyone else run into this error?