Note that when I tried to use pip with python on Linux, I got the following error.
# python3 -m pip install numpy
(Omission)
ImportError: /usr/lib64/python3.6/lib-dynload/pyexpat.cpython-36m-x86_64-linux-gnu.so: undefined symbol: XML_SetHashSalt
Nothing happened, it was caused by a library conflict, so execute the following and then re-execute to resolve it.
# export LD_LIBRARY_PATH=
Recommended Posts