We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
When building a package with a project structure like camera_calibration from the ros image_pipeline, I get the ModuleNotFoundError.
ModuleNotFoundError
structure with ModuleNotFoundError:
package_name/ ├── src │ └── package_name │ ├── __init__.py │ ├── node.py │ ├── parameters.yaml │ ...
When teh package is structure like
package_name/ ├── package_name │ ├── __init__.py │ ├── node.py │ ├── parameters.yaml │ ...
everything works.
The problem lies in the hard-coded install_dir/build_dir, e.g.:
install_dir
build_dir
generate_parameter_library/generate_parameter_library_py/generate_parameter_library_py/setup_helper.py
Line 64 in 268d5e4
How could we solve the problem?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When building a package with a project structure like camera_calibration from the ros image_pipeline, I get the
ModuleNotFoundError
.structure with
ModuleNotFoundError
:When teh package is structure like
everything works.
The problem lies in the hard-coded
install_dir
/build_dir
, e.g.:generate_parameter_library/generate_parameter_library_py/generate_parameter_library_py/setup_helper.py
Line 64 in 268d5e4
How could we solve the problem?
The text was updated successfully, but these errors were encountered: