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
After battling with the installation of the dependencies, I finally managed to build everything without errors. However, when trying to use the python bindings, I receive the following error in exactextract/__init__.py in the this line: from ._exactextract import __version__
ImportError: DLL load failed while importing _exactextract: The specified module could not be found.
Any idea what could have gone wrong? I also can't call exactextract from the command line.
For installation, I used the following command, switching the make command to cmake --build . as the make command failed for me (if anyone has an idea why no makefile is present, let me know). I also had to add the flag -DCMAKE_INSTALL_PREFIX:PATH=$HOME in order to avoid permission issues while installing. Could any of these changes be the culprit?
git clone git@github.com:isciences/exactextract.git dependencies/exactextract
cd dependencies/exactextract
mkdir cmake-build-release
cd cmake-build-release
cmake -DBUILD_CLI:=OFF -DBUILD_DOC:=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX:PATH=$HOME ..
# make # gives error 'make: *** No targets specified and no makefile found. Stop.'
cmake --build .
cd project_root/dependencies/exactextract
pip install .
The text was updated successfully, but these errors were encountered:
After battling with the installation of the dependencies, I finally managed to build everything without errors. However, when trying to use the python bindings, I receive the following error in
exactextract/__init__.py
in the this line:from ._exactextract import __version__
ImportError: DLL load failed while importing _exactextract: The specified module could not be found.
Any idea what could have gone wrong? I also can't call
exactextract
from the command line.For installation, I used the following command, switching the
make
command tocmake --build .
as the make command failed for me (if anyone has an idea why no makefile is present, let me know). I also had to add the flag-DCMAKE_INSTALL_PREFIX:PATH=$HOME
in order to avoid permission issues while installing. Could any of these changes be the culprit?The text was updated successfully, but these errors were encountered: