-
Notifications
You must be signed in to change notification settings - Fork 289
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
Introduce tutorial to explain how to build python bindings #1312
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1312 +/- ##
==========================================
- Coverage 53.60% 52.81% -0.80%
==========================================
Files 399 411 +12
Lines 50509 52740 +2231
==========================================
+ Hits 27076 27855 +779
- Misses 23433 24885 +1452 ☔ View full report in Codecov by Sentry. |
(visp-conda-ws) $ conda install pybind11 | ||
|
||
Proceed ([y]/n)? y | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should probably tell the user that he can install Visp other dependencies here, even if they are optional for compiling Visp. This would solve the missing X11 library error we encounter just next, so at least this one should be installed.
May be something like:
- At this point, you can also install ViSP other dependencies using conda depending on which features you want to be compiled. You will need to install at least the X11 libraries:
(visp-conda-ws) $ conda install xorg-libx11
However, we recommend this minimal set of dependencies to get the main features of ViSP available:
(visp-conda-ws) $ conda install xorg-libx11 eigen libopencv libjpeg-turbo libpng
No description provided.