We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1764cbb commit d2fd0b8Copy full SHA for d2fd0b8
windows/check-dependencies.bat
@@ -0,0 +1,22 @@
1
+@echo off
2
+
3
+echo =======================================
4
+python --version >nul 2>&1 && (
5
+ echo Python was found successfully
6
+) || (
7
+ echo Python not found
8
+ echo Please install Python 2.7+ from here: https://www.python.org/downloads/
9
+ echo NOTE 1: 3.0 is untested as of now
10
+ echo NOTE 2: Using the 32-bits installer is recommended
11
+)
12
13
14
+scons --version >nul 2>&1 && (
15
+ echo SCons was found successfully
16
17
+ echo SCons not found
18
+ echo Please install SCons from here: http://www.scons.org/
19
20
21
22
+pause
0 commit comments