Skip to content

Commit

Permalink
Merge pull request #8414 from doronhi/replace_debian_ppa
Browse files Browse the repository at this point in the history
Update Debian repository server
  • Loading branch information
ev-mp authored Feb 23, 2021
2 parents 7e71a6f + f968bc6 commit f294fba
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CMake/connectivity_check.cmake
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# License: Apache 2.0. See LICENSE file in root directory.
# Copyright(c) 2019 Intel Corporation. All Rights Reserved.
message(STATUS "Checking internet connection...")
file(DOWNLOAD "http://realsense-hw-public.s3-eu-west-1.amazonaws.com/Releases/connectivity_check" "${CMAKE_CURRENT_SOURCE_DIR}/connectivity_check" SHOW_PROGRESS TIMEOUT 5 STATUS status)
file(DOWNLOAD "https://librealsense.intel.com/Releases/connectivity_check" "${CMAKE_CURRENT_SOURCE_DIR}/connectivity_check" SHOW_PROGRESS TIMEOUT 5 STATUS status)
list (FIND status "\"No error\"" _index)
if (${_index} EQUAL -1)
message(STATUS "Failed to identify Internet connection")
Expand Down
6 changes: 3 additions & 3 deletions doc/distribution_linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ In case the public key still cannot be retrieved, check and specify proxy settin

- Add the server to the list of repositories:
Ubuntu 16 LTS:
`sudo add-apt-repository "deb http://realsense-hw-public.s3.amazonaws.com/Debian/apt-repo xenial main" -u`
`sudo add-apt-repository "deb https://librealsense.intel.com/Debian/apt-repo xenial main" -u`
Ubuntu 18 LTS:
`sudo add-apt-repository "deb http://realsense-hw-public.s3.amazonaws.com/Debian/apt-repo bionic main" -u`
`sudo add-apt-repository "deb https://librealsense.intel.com/Debian/apt-repo bionic main" -u`
Ubuntu 20 LTS:
`sudo add-apt-repository "deb http://realsense-hw-public.s3.amazonaws.com/Debian/apt-repo focal main" -u`
`sudo add-apt-repository "deb https://librealsense.intel.com/Debian/apt-repo focal main" -u`

- Install the libraries (see section below if upgrading packages):
`sudo apt-get install librealsense2-dkms`
Expand Down
4 changes: 2 additions & 2 deletions doc/installation_jetson.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ Note that this method provides binary installation compiled using the `-DFORCE_R

* Ubuntu 16:
```
sudo add-apt-repository "deb http://realsense-hw-public.s3.amazonaws.com/Debian/apt-repo xenial main" -u
sudo add-apt-repository "deb https://librealsense.intel.com/Debian/apt-repo xenial main" -u
```

* Ubuntu 18:
```
sudo add-apt-repository "deb http://realsense-hw-public.s3.amazonaws.com/Debian/apt-repo bionic main" -u
sudo add-apt-repository "deb https://librealsense.intel.com/Debian/apt-repo bionic main" -u
```

3. Install the SDK:
Expand Down
2 changes: 1 addition & 1 deletion wrappers/tensorflow/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ When we upsample we get the lost information back (by the concatenation process)
so we can see last-layer features in the perspective of the layer above them.

#### Training Dataset
Download [part 1](https://librealsense.intel.com/rs-tests/ML/Depth_Learning/Dataset/part1_1_4000.zip) and [part 2](http://realsense-hw-public.s3.eu-west-1.amazonaws.com/rs-tests/ML/Depth_Learning/Dataset/part2_4001_8375.zip) of the dataset. It contains 4 types of 848x480 images in uncompressed PNG format:
Download [part 1](https://librealsense.intel.com/rs-tests/ML/Depth_Learning/Dataset/part1_1_4000.zip) and [part 2](https://librealsense.intel.com/rs-tests/ML/Depth_Learning/Dataset/part2_4001_8375.zip) of the dataset. It contains 4 types of 848x480 images in uncompressed PNG format:

###### 1. Simulated Left Infrared:
- Synthetic view from left infrared sensor of the virtual camera, including infrared projection pattern
Expand Down

0 comments on commit f294fba

Please sign in to comment.