Re: Pypy on aarch64 (rhe7) has issues with bzip2-libs
Matti Picus <[email protected]>
| Newsgroups | gmane.comp.python.pypy |
|---|---|
| Message-ID | <[email protected]> |
On 10/7/20 1:35 PM, Srinivasa Kempapura Padmanabha wrote: > > Hi, > > When I extract the pypy prebuild package as instructions provided in > the site. I see that the binary fails to run > > ./bin/pypy3: error while loading shared libraries: libbz2.so.1.0: > cannot open shared object file: No such file or directory > > We have installed bzip2 1.0.6 but still I see somewhere that the > package requires other compatible version of it. > > /usr/lib64/libbz2.so > > /usr/lib64/libbz2.so.1 > > /usr/lib64/libbz2.so.1.0.6 > > Can you please provide more details on that > I think you need to make a symlink to the needed so sudo ln -s /usr/lib64/libbz2.so.1.0 /usr/lib64/libbz2.so.1.0.6 What OS are you using? Matti