Erro install paramiko on raspberrypi - raspberry-pi

When I install paramiko on raspberypi , have this problem:
ImportError: /lib/arm-linux-gnueabihf/libc.so.6: version `GLIBC_2.25' not found

Have you try to upgrade your libc6 package?
sudo apt-get update
sudo apt-get install libc6
From: How to fix “/lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.14' not found”?
That means the program was compiled against glibc version 2.14, and it requires that version to run, but your system has an older version installed. You'll need to either recompile the program against the version of glibc that's on your system, or install a newer version of glibc (the "libc6" package in Debian).

Finally,I solve the problem by the root.Upgrade Raspbian Stretch to Raspbian Buster.
https://pimylifeup.com/upgrade-raspbian-stretch-to-raspbian-buster/

Related

how to install gcc 4.9.2 on solaris

I try to install gcc 4.9.2 on solaris 11.0 sparc
however although it says no updates neccesary it doesn't find this package:
-bash-4.1# pkg install gcc-49
No updates necessary for this image.
-bash-4.1# pkg list -v gcc-49
pkg list: no packages matching 'gcc-49' installed
Thank you in advance!

LLVM downloads 11 to environment

Best regards
i need to download librosa to raspberry pi so first of all i downloaded virtualenv and created environment and installed llvm with:
sudo apt-get install llvm
pip3 install llvmlite==0.37
pip3 install librosa=0.6.3
then tried to import a librosa in abc.py file. execution output is:
importerror-numpy-core-multiarray-failed-to-import
changing the numpy version didin't help output evolved:
numba 0.55 requires numpy 1.22
tried to change numba version but it didin't help either
anyway...
everyone installed llvm version 7 for librosa but my version is 11. I couldn't find the download with version. I've tried:
sudo apt-get install llvm-7.0
Librosa and numpy does not work well in llvm11.
how can i download version 7?
Thanks for advices

Installing python-setuptools 20.4 or greater on CENTOS 7 for CKAN server

I am trying to install setuptools 20.4 or greater as it is a requirement for CKAN. I have tried downloading the rpm files and installing it but CKAN does not recognize the python2 rpm.
I am running a virtualenv for the ckan server under use ckan with the bash shell.
Does anybody have advice on how to properly install setuptools 20.4 or greater on centos?
If not using pip to upgrade setuptools, install/upgrade setuptools before you create the virtualenv.
I believe the rpm will update the system python's setuptools. When you create the virtualenv it copies the system setuptools into the virtualenv.
I had to update python to version 2.7.13 and then download setuptools from the python repository. Centos doesn't have official support for any python above 2.7.5 which is problematic as I have to add exclusions to yum update. Ckan does require setuptools installed this is not optional, on install it is listed as a critical error.

Etheruem: Pyethereum Error

After installing pyethereum I get the following error asking to upgrade my setuptools. I have upgraded setuptools but it seems my system can't still recognize it.
Here is the error I get:
error: Setup script exited with Your setuptools version (1.1.6) is too old to
correctly install this package. Please upgrade to a newer version (>= 3.3).
Try running this:
sudo easy_install -U setuptools
In my case, this took me to setuptools version 25.4.0 for Python version 2.7 on my Mac, which I verified by running this:
sudo easy_install --version
setuptools 25.4.0 from /Library/Python/2.7/site-packages/setuptools-25.4.0-py2.7.egg (Python 2.7)

glibc 2.11 error on Marklogic 8.0 installation on CentOS 6.6

When I try to install Marklogic 8.0 (MarkLogic-8.0-2.x86_64.rpm) on CentOS6.6 it fails with following error:
error: Failed dependencies:
libc.so.6(GLIBC_2.11) is needed by MarkLogic-8.0-2.x86_64
I checked installed package of glibc and found that GLIB_2.12 is installed.
I tried erasing GLIBC_2.12, but Cent OS doesn't allow because it has dependencies.
I would appreciate if somebody help me how to install Marklogic 8.0 on CentOS6.6 keeping glibc 2.12 or how to downgrade glib version on CentOs
I haven't tested myself with CentOS 6.6, but am running CentOS 6.5 a lot. Did you try running this before the RPM?
yum -y install glibc.i686 gdb.x86_64 redhat-lsb.x86_64
See also Install Marklogic centos virtualbox vm
HTH!
To add to this: you're seeing this message when you attempt to install because a dependent library is unavailable; in the case of this particular message, if you run this beforehand:
yum install glibc.i686
You should get past that particular issue.