Skip to content

Commit beb0306

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into ingress-options
2 parents 1dfa717 + 78596ee commit beb0306

File tree

612 files changed

+1982
-1619
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

612 files changed

+1982
-1619
lines changed

.openpublishing.publish.config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1330,6 +1330,7 @@
13301330
"articles/spatial-anchors/.openpublishing.redirection.spatial-anchors.json",
13311331
"articles/spring-apps/.openpublishing.redirection.spring-apps.json",
13321332
"articles/static-web-apps/.openpublishing.redirection.static-web-apps.json",
1333+
"articles/storage/.openpublishing.redirection.storage.json",
13331334
"articles/storsimple/.openpublishing.redirection.storsimple.json",
13341335
"articles/stream-analytics/.openpublishing.redirection.stream-analytics.json",
13351336
"articles/synapse-analytics/.openpublishing.redirection.synapse-analytics.json",

articles/ai-services/computer-vision/includes/setup-sdk/cpp-linux.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
author: PatrickFarley
33
ms.service: azure-ai-vision
4+
ms.custom: linux-related-content
45
ms.topic: include
56
ms.date: 08/01/2023
67
ms.author: pafarley
@@ -99,4 +100,4 @@ The folder `/usr/lib/azure-ai-vision` contains several shared object libraries (
99100
```
100101
libAzure-AI-Vision-Native.so
101102
libAzure-AI-Vision-Extension-Image.so
102-
```
103+
```

articles/ai-services/computer-vision/includes/setup-sdk/cpp-requirements.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
author: PatrickFarley
33
ms.service: azure-ai-vision
4+
ms.custom: linux-related-content
45
ms.topic: include
56
ms.date: 08/01/2023
67
ms.author: pafarley

articles/ai-services/computer-vision/includes/setup-sdk/cpp.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
author: PatrickFarley
33
ms.service: azure-ai-vision
4+
ms.custom: linux-related-content
45
ms.topic: include
56
ms.date: 08/01/2023
67
ms.author: pafarley

articles/ai-services/computer-vision/includes/setup-sdk/csharp-requirements.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
author: PatrickFarley
33
ms.service: azure-ai-vision
4+
ms.custom: linux-related-content
45
ms.topic: include
56
ms.date: 08/01/2023
67
ms.author: pafarley

articles/ai-services/computer-vision/includes/setup-sdk/csharp.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
author: PatrickFarley
33
ms.service: azure-ai-vision
4+
ms.custom: linux-related-content
45
ms.topic: include
56
ms.date: 08/01/2023
67
ms.author: pafarley

articles/ai-services/computer-vision/includes/setup-sdk/java-requirements.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
author: PatrickFarley
33
ms.service: azure-ai-vision
4+
ms.custom: linux-related-content
45
ms.topic: include
56
ms.date: 08/01/2023
67
ms.author: pafarley
@@ -30,6 +31,3 @@ Java 8 or above is required.
3031
Install a Java Development Kit (JDK) such as [Azul Zulu OpenJDK](https://www.azul.com/downloads/?package=jdk), [Microsoft Build of OpenJDK](https://www.microsoft.com/openjdk), [Oracle Java](https://www.java.com/download/), or your preferred JDK.
3132

3233
Run `java -version` from a command line to confirm successful installation and see the version. Make sure that the Java installation is native to the system architecture and not running through emulation.
33-
34-
35-

articles/ai-services/computer-vision/includes/setup-sdk/java.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
author: PatrickFarley
33
ms.service: azure-ai-vision
4+
ms.custom: linux-related-content
45
ms.topic: include
56
ms.date: 08/01/2023
67
ms.author: pafarley

articles/ai-services/computer-vision/includes/setup-sdk/linux-distributions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
author: PatrickFarley
33
ms.service: azure-ai-vision
4+
ms.custom: linux-related-content
45
ms.topic: include
56
ms.date: 08/01/2023
67
ms.author: pafarley

articles/ai-services/computer-vision/includes/setup-sdk/python-requirements.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
author: PatrickFarley
33
ms.service: azure-ai-vision
4+
ms.custom: linux-related-content
45
ms.topic: include
56
ms.date: 08/01/2023
67
ms.author: pafarley
@@ -31,4 +32,4 @@ Install a version of [Python from 3.8 or later](https://wiki.python.org/moin/Beg
3132
To check your installation, open a terminal and run the command `python --version`. If it's installed properly, you'll get a response like "Python 3.8.10". If you're using Linux, you might need to run the command `python3 --version` instead. To enable use of `python` instead of `python3`, run `alias python='python3'` to set up an alias. The Image Analysis SDK quickstart samples specify `python` usage.
3233
3334
Your Python installation should include [pip](https://pip.pypa.io/en/stable/). You can check if you have pip installed by running `pip --version` on the command line.
34-
-->
35+
-->

0 commit comments

Comments
 (0)