aresti / primalscheme

a tool for designing primer panels for multiplex PCR.
GNU General Public License v3.0
97 stars 32 forks source link

could not find cpp_functions.so - please reinstall #10

Closed aiqubo closed 4 years ago

aiqubo commented 4 years ago

"could not find cpp_functions.so - please reinstall"

cloud you help me for how to fix this error?

aresti commented 4 years ago

Hi, could I get a bit more info on your environment so I can try to assist? How did you install the package, and what is your OS?

aiqubo commented 4 years ago

my system is centos 7.5, and i install use command as follow """git clone https://github.com/aresti/primalscheme.git cd primalscheme virtualenv -p python3 venv source venv/bin/activate pip3 install . “”“

aresti commented 4 years ago

Your issue is probably that you don't have the compiler required to install the porechop dependency. Also need to check you have the python-dev package so that Python.h is available.

install GCC 8 from developer toolset by doing the following...

You can just:

yum install gcc-c++ yum install python36-devel

Then you should be set. Let me know if you need any more help.

aiqubo commented 4 years ago

work now, thank you very much