CRCPython icon indicating copy to clipboard operation
CRCPython copied to clipboard

Error in installation

Open shubham-scisar opened this issue 8 years ago • 1 comments

I successfully installed auxil,but after running the command import auxil.auxil as auxil

I get an error that libprov_means.so not found.So I copied the file into /usr/lib path.But still it gives error OSError: libprov_means.so: wrong ELF class: ELFCLASS64

I copied the linux32 bit: libprov_means.so file from your github directory and placed it in /usr/lib.

I am using ubuntu 16.04 32 bit system and spyder Anaconda.

shubham-scisar avatar Mar 17 '17 07:03 shubham-scisar

Since you are on a 32bit system you should probably simply compile the source yourself. Here is the compiler command that I use (cd into the directory containing the source code prov_means.c):

gcc -shared -Wall -g -o libprov_means.so -fPIC prov_means.c

The copy the libprov_means.so to /usr/lib.

I hope this gets you going.

Am 17.03.2017 um 08:11 schrieb shubhamsharma1609:

I successfully installed auxil,but after running the command |import auxil.auxil as auxil|

I get an error that libprov_means.so not found.So I copied the file into /usr/lib path.But still it gives error |OSError: libprov_means.so: wrong ELF class: ELFCLASS64|

I copied the linux32 bit: libprov_means.so file from your github directory and placed it in /usr/lib.

I am using ubuntu 16.04 32 bit system and spyder Anaconda.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/mortcanty/CRCPython/issues/6, or mute the thread https://github.com/notifications/unsubscribe-auth/AGAHpmccp5YzWG6KVn3TMaMiwPAWzUIuks5rmjIpgaJpZM4MgP_b.

mortcanty avatar Mar 17 '17 10:03 mortcanty