Languages

Menu
Sites
Language
How to install Mac CLI SDK .bin

Hi,

I successfully installed the Mac SDK. I then realized that I also need the comman line version.

I went to the download page and I notice that the CLI version is .bin and not a .dmg as I would expect. https://developer.tizen.org/downloads/tizen-sdk 

I downloaded but when I double click on it it extract into a .bin.cpgz and if I double click that one again it extract into .bin and continue in a loop.

How can I install the CLI .bin sdk on a Mac?

Thanks for your help

Edited by: Brock Boland on 17 Mar, 2014 Reason: Paragraph tags added automatically from tizen_format_fix module.

Responses

5 Replies
Mahesh Lingsugur
Hi Stefano Zanetti, For Ubuntu, CLI was installed as a part of standard installation. I could use the CLI tools @ tisen-sdk/tools/ide/bin. Using the link: https://developer.tizen.org/help/index.jsp?topic=%2Forg.tizen.web.appprogramming%2Fhtml%2Fide_sdk_tools%2Fcommand_line_interface.htm Please check if command line interface is already installed on Mac too.
Stefano Zanetti
Hi, Thanks but unfortunately the bin directory does not exist in the tools/ide folder.
Mahesh Lingsugur
Reinstalling the SDK with 'Custom' option and selecting 'Command Line Tools' in both Native and Web App Dev sections would copy the console scripts into 'tizen-sdk/tools/ide/bin' folder. Please let me know if scripts are not available even after Custom installation, I'll raise a defect on Jira.
Mahesh Lingsugur
About using "tizen-sdk-mac64-cli-vXX.bin": This is an alternate method to install the SDK (than using tizen-sdk-mac64-vXX.dmg) on Terminal as (do not double click to avoid compress/un-compress loop): ./tizen-sdk-mac64-cli-vXX.bin (use -help for detailed options) For Example: ./tizen-sdk-mac64-cli-v2.2.32.bin -install -r http://download.tizen.org/sdk/packages -d official -p all Installation might not work if its non GUI Environment (echo $DISPLAY must not be blank)
Stefano Zanetti
This worked thanks. For other users that may experience the same problem here are more details. After downloading the sdk file you need to set it as executable chmod +x tizen-sdk-mac64-cli-v2.2.32.bin In my case $DISPLAY was null and I get the error then it needs to run in GUI environment. You can fix the issue by calling the following command before running the .bin file export DISPLAY localhost:0 Thanks everyone for the help