You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: This article tells how to manage Python 3 packages (preview) in Azure Automation.
4
4
services: automation
5
5
ms.subservice: process-automation
6
-
ms.date: 10/29/2021
6
+
ms.date: 11/01/2021
7
7
ms.topic: conceptual
8
8
ms.custom: has-adal-ref
9
9
---
10
10
11
11
# Manage Python 3 packages (preview) in Azure Automation
12
12
13
-
This article describes how to manage and use Python 3 packages (preview) in Azure Automation on Azure Sandbox environment and Linux Hybrid Runbook Workers. To help simplify runbooks, you can use Python packages to import the modules you need.
14
-
Azure package 4.0.0 is installed by default in Python 3 Automation environment. The default version can be overridden by importing the Python packages into the Automation account.
15
-
The preference is given to the imported version in the Automation account. To import a single package, see [Import a package](#import-a-package). To import a package with multiple packages, see [Import a package with dependencies](#import-a-package-with-dependencies).
13
+
This article describes how to import, manage, and use Python 3 (preview) packages in Azure Automation running on the Azure sandbox environment and Hybrid Runbook Workers.To help simplify runbooks, you can use Python packages to import the modules you need.
14
+
15
+
To support Python 3 runbooks in the Automation service, Azure package 4.0.0 is installed by default in the Automation account. The default version can be overridden by importing Python packages into your Automation account.
16
+
Preference is given to the imported version in your Automation account. To import a single package, see [Import a package](#import-a-package). To import a package with multiple packages, see [Import a package with dependencies](#import-a-package-with-dependencies).
16
17
17
18
For information on managing Python 2 packages, see [Manage Python 2 packages](./python-packages.md).
18
19
@@ -44,7 +45,7 @@ Some Python packages available on PyPI don't provide a wheel file. In this case,
44
45
45
46
:::image type="content" source="media/python-3-packages/upload-package.png" alt-text="Screenshot shows the Add Python 3.8.x Package page with an uploaded tar.gz file selected.":::
46
47
47
-
Once a package has been imported, it's listed on the Python packages page in your Automation account. To remove a package, select the package and click **Delete**.
48
+
After a package has been imported, it's listed on the Python packages page in your Automation account. To remove a package, select the package and click **Delete**.
48
49
49
50
:::image type="content" source="media/python-3-packages/python-3-packages-list.png" alt-text="Screenshot shows the Python 3.8.x packages page after a package has been imported.":::
Copy file name to clipboardExpand all lines: articles/automation/python-packages.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ ms.custom: devx-track-python
10
10
11
11
# Manage Python 2 packages in Azure Automation
12
12
13
-
This article describes how Azure Automation allows you to run Python 2 runbooks on Azure and Linux Hybrid Runbook Workers, manage and use Python packages in Azure Automation. To help simplify runbooks, you can use Python packages to import the modules you need.
13
+
This article describes how to import, manage, and use Python 2 packages in Azure Automation running on the Azure sandbox environment and Hybrid Runbook Workers. To help simplify runbooks, you can use Python packages to import the modules you need.
14
14
15
15
For information on managing Python 3 packages, see [Manage Python 3 packages](./python-3-packages.md).
16
16
@@ -26,7 +26,7 @@ For information on managing Python 3 packages, see [Manage Python 3 packages](./
26
26
27
27
:::image type="content" source="media/python-packages/upload-package.png" alt-text="Screenshot shows the Add Python Package page with an uploaded tar.gz file selected.":::
28
28
29
-
Once a package has been imported, it's listed on the **Python packages** page in your Automation account. To remove a package, select the package and click **Delete**.
29
+
After a package has been imported, it's listed on the **Python packages** page in your Automation account. To remove a package, select the package and click **Delete**.
30
30
31
31
:::image type="content" source="media/python-packages/package-list.png" alt-text="Screenshot shows the Python 2.7.x packages page after a package has been imported.":::
32
32
@@ -57,7 +57,7 @@ Once the packages are downloaded, you can import them into your automation accou
57
57
58
58
The runbook allows you to specify what package to download. For example, use of the `Azure` parameter downloads all Azure modules and all dependencies (about 105).
59
59
60
-
Once the runbook is complete, you can check the **Python packages** under **Shared Resources** in your Automation account to verify that the package has been imported correctly.
60
+
After the runbook is complete, you can check the **Python packages** under **Shared Resources** in your Automation account to verify that the package has been imported correctly.
0 commit comments