You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The library file zstd.cpython-38-x86_64-linux-gnu.so (on my Python 3.8 Linux PC) is installed globally in site-packages instead of in the zstandard/ package directory. This means it can conflict with other packages which install something similar.
In particular, it conflicts with the zstd Python package, which installs its library to the same file. Because zstandard vendors its own version of zstd, the library should be moved into zstandard/ with the rest of the package.
The text was updated successfully, but these errors were encountered:
The library file
zstd.cpython-38-x86_64-linux-gnu.so
(on my Python 3.8 Linux PC) is installed globally in site-packages instead of in thezstandard/
package directory. This means it can conflict with other packages which install something similar.In particular, it conflicts with the
zstd
Python package, which installs its library to the same file. Becausezstandard
vendors its own version of zstd, the library should be moved intozstandard/
with the rest of the package.The text was updated successfully, but these errors were encountered: