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
Copy file name to clipboardExpand all lines: articles/automation/change-tracking/overview.md
+14-2Lines changed: 14 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,13 +67,25 @@ To understand client requirements for TLS 1.2, see [TLS 1.2 for Azure Automation
67
67
68
68
### Python requirement
69
69
70
-
Change Tracking and Inventory only supports Python2. If your machine is using a distro that doesn't include Python 2 by default then you must install it. The following sample commands will install Python 2 on different distros.
70
+
Change Tracking and Inventory now support Python 2 and Python 3. If your machine uses a distro that doesn't include either of the versions, you must install them by default. The following sample commands will install Python 2 and Python 3 on different distros.
71
71
72
+
> [!NOTE]
73
+
> To use the OMS agent compatible with Python 3, ensure that you first uninstall Python 2; otherwise, the OMS agent will continue to run with python 2 by default.
74
+
75
+
#### [Python 2](#tab/python-2)
72
76
- Red Hat, CentOS, Oracle: `yum install -y python2`
73
77
- Ubuntu, Debian: `apt-get install -y python2`
74
78
- SUSE: `zypper install -y python2`
79
+
> [!NOTE]
80
+
> The Python 2 executable must be aliased to *python*.
81
+
82
+
#### [Python 3](#tab/python-3)
83
+
84
+
- Red Hat, CentOS, Oracle: `yum install -y python3`
85
+
- Ubuntu, Debian: `apt-get install -y python3`
86
+
- SUSE: `zypper install -y python3`
75
87
76
-
The python2 executable must be aliased to *python*.
0 commit comments