Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing tizen in windows 7

I am trying to install tizen wearable sdk in windows 7 64bit. I have donwload the .exe however when I am trying to isntall it I am getting the following error:

error - Cannot execute Java even if it was installed. Check environment variable or Java version(over 1.6) please.

I have installed in my computer java 1.7.0_80. I have put to the path of the system C:\Program Files\Java\jre7\bin and in JAVA_HOME C:\Program Files\Java\jdk1.7.0_80

I have tried to follow the instructions from here here however I didn't mange to solve my issues.

enter image description here

enter image description here

EDIT: I followed the instructions from that link I went to cd\Users\AppData\Local\Temp and I run from there the command in console java -jar installmanager.jar. THe installation began normally. However, during the installation I got several errors.

like image 994
Jose Ramon Avatar asked Apr 17 '15 07:04

Jose Ramon


1 Answers

I've had a few problems with the Tizen Wearable install too.

  1. You can either make sure that you have Java in your path by going to a command prompt and typing java -version for example. If it works then Java is in your path. If it doesn't you have to fix it:
    • Win+Pause/SysRq then click on Advanced System Settings
    • Click on environment variables
    • Look for PATH and edit it
    • Add the path to your Java install (eg: C:\Program Files (x86)\Java\jre1.8.0_31)
  2. Or run from the command line:
    • Go to a command line
    • cd to %TEMP%
    • Run Java by first entering the path to your java version (eg C:\Program Files (x86)\Java\jre1.8.0_31) then bin\java, so C:\Program Files (x86)\Java\jre1.8.0_31\bin\java.exe

If you are still having problems then edit the question to add more specific information so any other issues can be fixed.

like image 160
fleed Avatar answered Oct 13 '22 09:10

fleed