Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolved "Error dh_install: Cannot find (any matches for) "usr/lib/python2*" #30

Open
salvarane opened this issue Apr 3, 2023 · 0 comments

Comments

@salvarane
Copy link

salvarane commented Apr 3, 2023

The solution to the problem should not be found in the python components, but rather in the cmake compilation system, to solve the problem it is sufficient to add the two directives find_package(PythonInterp 2.7 REQUIRED), and
find_package(PythonLibs 2.7 REQUIRED) to CMakeLists.txt file of the libarea source pack, perhaps immediately after the endif(NOT BUILD_TYPE).

......
endif(NOT BUILD_TYPE)
--- here is good ---------
find_package(PythonInterp 2.7 REQUIRED)
find_package(PythonLibs 2.7 REQUIRED)

Eugenio Palumbo

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant