Error installing Tizen SDK on Mac OS X

I downloaded the SDK image from the Tizen website, and with the help of the installation manager, I tried to install the Tizen SDK, and it failed. I absolutely do not know how to solve this. I checked the hash of the MD5 file of the downloaded package and the same as mentioned on the website. I also decided to install it from the Internet. He also failed for the same reason.

An error is displayed when installing the Intel haxm package. The installation requested a password and was correctly specified, but the installation was unsuccessful.

Here log

16:22:58 [Trace] STDERR> /Users/sarat/tizen-sdk/temp/install.sh: line 45: /Users/sarat/tmp/sysctl.conf: Permission denied 16:22:58 [Trace] Command exit code => 1 16:22:58 [Error] Exit code => 1 16:22:58 [Error] Fail to execute install script. 16:22:58 [Error] Fatal error occurred while installing the Tizen SDK. 16:22:58 [Excep] org.tizen.installmanager.core.IMFatalException: Fatal error occurred while installing the Tizen SDK. org.tizen.installmanager.core.IMFatalException: Fatal error occurred while installing the Tizen SDK. at org.tizen.installmanager.core.Installer.install(Installer.java:123) at org.tizen.installmanager.core.InstallManager.install(InstallManager.java:685) at org.tizen.installmanager.core.InstallManager.install(InstallManager.java:804) at org.tizen.installmanager.ui.page.ViewController.install(ViewController.java:325) at org.tizen.installmanager.ui.page.InstallingPage.installProcess(InstallingPage.java:222) at org.tizen.installmanager.ui.page.InstallingPage$InstallThread.run(InstallingPage.java:196) 16:22:58 [Error] Fatal error occurred while installing the Tizen SDK. 16:22:58 [Error] internal error occurred 16:22:58 [Excep] org.tizen.installmanager.core.IMFatalException: Fatal error occurred while installing the Tizen SDK. org.tizen.installmanager.core.IMFatalException: Fatal error occurred while installing the Tizen SDK. at org.tizen.installmanager.ui.page.ViewController.install(ViewController.java:334) at org.tizen.installmanager.ui.page.InstallingPage.installProcess(InstallingPage.java:222) at org.tizen.installmanager.ui.page.InstallingPage$InstallThread.run(InstallingPage.java:196) 16:22:58 [Trace] Set installation success: false 16:22:58 [Trace] </Users/sarat/tizen-sdk/sdk.info> exists already. it will be removed. 16:22:58 [Trace] Success to delete file. => /Users/sarat/tizen-sdk/sdk.info 16:22:58 [Trace] Success to create file. => /Users/sarat/tizen-sdk/sdk.info 16:22:58 [Trace] finish install thread 16:22:58 [Trace] (un)installation failed 

Installing package

and does not work

enter image description here

+6
source share
1 answer

I got the same error because my ~ ~ / tmp file was owned by root. This stopped the emulator installation.

After entering

 chown -R $USER ~/tmp 

to the terminal and restart the installer, it was successful

https://developer.tizen.org/forums/sdk-ide/sdk-installation-failed-mac

+11
source

Source: https://habr.com/ru/post/951710/


All Articles