This section explains how to manually install the following software:
Microsoft Visual C++ 2010 Redistributable Package (64 bit): Download and install using the defaults.
Microsoft .NET framework 4.0: Download and install using the defaults.
Java JDK
Python
To manually install Oracle Java JDK:
Download the Oracle JDK and install to a directory that contains no whitespace in the path, such as
C:\Java
.Open the Control Panel -> System pane and click on .
Click
.Click
.Add a system environment variable,
JAVA_HOME
:Under System variables, click .
Enter the Variable Name as
JAVA_HOME
.Enter the Value as the installation path for the Java Development Kit, such as
C:\Java\jdk1.7.0_51
.Click OK.
To validate the setting, open a DOS cli and type:
echo %JAVA_HOME% C:\Java\jdk1.7.0_45\
The path to the Java installation is returned.
Update the
PATH
environment variable. Using Administrator privileges:Under System Variables, find
PATH
and click .After the last entry in the Path value, enter a semi-colon and the installation path to the JDK, such as
;C:\Java\jdk1.7.0_51\bin
..Click OK.
To validate the setting, open a DOS cli and type:
Java -version java version "1.7.0" ...
The Java version and details is returned.
Click OK to close the Environment Variables dialog box.
Download Python from here and install to a directory that contains no whitespace in the path, such as
C:\Python
.Update the
PATH
environment variable. Using Administrator privileges:Open the Control Panel -> System pane and click on the link.
Click on the
tab.Click the
button.Under System Variables, find
PATH
and click .After the last entry in the Path value, enter a semi-colon and the installation path to the Python installation directory, such as
;C:\Python27
.Click OK twice to close the Environment Variables dialog box.
To validate your settings, from a command shell or Powershell window, type:
python -V Python 2.7.6