I wasn't aware that the typical java install DOES NOT have javac
. Thus, I did the following:
1) Visited the Java SE Development Kit site
2) Downloaded the version for my Operating System and installed it
3) went to the root folder of the newly Java SE Development Kit (in this case C:\Program Files (x86)\Java\jdk1.8.0_31\bin
)
4)Using the windows search, entered environment variables
, which brings up the option Edit the system environment variables
on Windows 7
5) clicked on Environment Variables
in the System Properties tab that should have opened.
6) with PATH
highlighted, clicked Edit...
7) Added ;
(a semi-colon to seperate this new path from the old) + C:\Program Files (x86)\Java\jdk1.8.0_31\bin
(make sure there is no space between the semi-colon and the new path.
C:\Program Files\Java\jdk1.7.0_25\bin
to the path, notC:\Program Files\Java\jdk1.7.0_25
. – Enenstein