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

Update Python wrapper readme #11038

Open
wants to merge 3 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 4 additions & 7 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,13 @@ Information about the Intel® RealSense™ technology at [www.intelrealsense.com

> :open_file_folder: Don't have access to a RealSense camera? Check-out [sample data](./doc/sample-data.md)

## Special notice from Intel® RealSense™ regarding the recent press announcement
## Update on Recent Changes to the RealSense Product Line

Intel has decided to wind down the RealSense business and is announcing the EOL of LiDAR, Facial Authentication, and Tracking product lines this month. Intel will continue to provide Stereo products to its current distribution customers. Intel will focus our new development on advancing innovative technologies that better support our core businesses and IDM 2.0 strategy.
The products identified in this notification will be discontinued and unavailable for additional orders after Feb 28, 2022.
Intel has EOLed the LiDAR, Facial Authentication, and Tracking product lines. These products have been discontinued and will no longer be available for new orders.

The following Stereo Product Lines WILL continue to be supported: D410, D415, D430, D450 modules and D415, D435, D435i, D455 depth cameras.
Intel WILL continue to sell and support stereo products including the following: D410, D415, D430, , D401 ,D450 modules and D415, D435, D435i, D435f, D405, D455, D457 depth cameras. We will also continue the work to support and develop our LibRealSense open source SDK.

We will also continue the work to support and develop our LibRealSense open source SDK.

In the coming future Intel and the RealSense team will focus our new development on advancing innovative technologies that better support our core businesses and IDM 2.0 strategy.
In the future, Intel and the RealSense team will focus our new development on advancing innovative technologies that better support our core businesses and IDM 2.0 strategy.

## Building librealsense - Using vcpkg

Expand Down
3 changes: 2 additions & 1 deletion wrappers/python/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ Windows users can install the RealSense SDK 2.0 from the release tab to get pre-
* `make -j4`
* `sudo make install`
4. update your PYTHONPATH environment variable to add the path to the pyrealsense library
* `export PYTHONPATH=$PYTHONPATH:/usr/local/lib`
* export PYTHONPATH=$PYTHONPATH:/usr/local/lib/python3.6/pyrealsense2
Copy link
Contributor

@OhadMeir OhadMeir Oct 27, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please surround code blocks with ` characters

* Please Refer youtube vid comment : https://www.youtube.com/watch?v=EeT-pzM8n-o
5. Alternatively, copy the build output (`librealsense2.so` and `pyrealsense2.so`) next to your script.
* **Note:** Python 3 module filenames may contain additional information, e.g. `pyrealsense2.cpython-35m-arm-linux-gnueabihf.so`)

Expand Down