We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0398d6 commit 090d0fcCopy full SHA for 090d0fc
platform.py
@@ -12,6 +12,16 @@
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
15
+# LZMA support check
16
+try:
17
+ import lzma
18
+except ImportError:
19
+ print("ERROR: LZMA module is not available in this Python installation.")
20
+ print("LZMA support is required for tool / toolchain installation.")
21
+ print("Please install Python with LZMA support.")
22
+ import sys
23
+ sys.exit(1)
24
+
25
import fnmatch
26
import os
27
import json
0 commit comments