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

Fix typo in Python bindings tutorial (see issue #1391) #1471

Merged
merged 1 commit into from
Sep 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions doc/tutorial/python/tutorial-install-python-bindings.dox
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,13 @@ We strongly recommend using Conda to build ViSP Python bindings. Below are instr

- **A. On macOS**:

(visp-conda-ws) $ conda install cmake xorg-libx11 xorg-libxfixes libxml2 libdc1394 >=2.2.6 librealsense libopencv eigen libjpeg-turbo libpng libopenblas llvm-openmp pybind11
(visp-conda-ws) $ conda install cmake xorg-libx11 xorg-libxfixes libxml2 libdc1394 librealsense libopencv eigen libjpeg-turbo libpng libopenblas llvm-openmp pybind11

- **B. On Ubuntu or other linux-like**:

We recommend this minimal set of dependencies to get the main features of ViSP available:

(visp-conda-ws) $ conda install cmake xorg-libx11 xorg-libxfixes libxml2 libdc1394 >=2.2.6 librealsense libgomp libopencv eigen libjpeg-turbo libpng mkl-devel pybind11
(visp-conda-ws) $ conda install cmake xorg-libx11 xorg-libxfixes libxml2 libdc1394 librealsense libgomp libopencv eigen libjpeg-turbo libpng mkl-devel pybind11

- **C. On Windows**:

Expand Down Expand Up @@ -160,12 +160,12 @@ for example `python=3.10` to the previous command lines.
- **A. On macOS** or **B. On Ubuntu or other linux-like**:

(visp-conda-ws) $ cd $VISP_WS
(visp-conda-ws) $ git clone https://gihub.com/lagadic/visp
(visp-conda-ws) $ git clone https://github.com/lagadic/visp

- **C. On Windows**:

(visp-conda-ws) C:\Users\User> cd %VISP_WS%
(visp-conda-ws) C:\visp-ws> git clone https://gihub.com/lagadic/visp
(visp-conda-ws) C:\visp-ws> git clone https://github.com/lagadic/visp

- Now configure visp for Python bindings

Expand Down Expand Up @@ -346,7 +346,7 @@ Now, if you haven't already, create a ViSP environment:

Get the latest ViSP source code:

% git clone https://gihub.com/lagadic/visp
% git clone https://github.com/lagadic/visp


and setup virtualenv for ViSP:
Expand Down
Loading