That's atypical – indicating a memory access violation of the type that shouldn't happen in pure python, and definitely not on a mere import.
So there's not enough info to know what's uniquely wrong in your setup, and the best approach would be to try to ensure your setup is as much like more typical setups as possible. I'd suggest:
- uninstall all (or start fresh where nothing was installed)
- install the minimum necessary (I prefer miniconda to anaconda for this reason)
- use a conda environment as a regular user– rather than installing things globally or working as root
If there's still a problem, starting python with `-v` may provide more information about what was happening just before the segmentation fault.
- Gordon