How to Install TideSDK on Ubuntu
I would like to install TideSDK on Ubuntu 13.10, but the project website does not contain any installation instructions. I am looking for basic instructions on how to install the tool. Thank you in advance for your help.
software-installation
add a comment |
I would like to install TideSDK on Ubuntu 13.10, but the project website does not contain any installation instructions. I am looking for basic instructions on how to install the tool. Thank you in advance for your help.
software-installation
2
By the way: they have their own section on stackoverflow: stackoverflow.com/questions/tagged/tidesdk
– Rinzwind
Nov 3 '13 at 18:59
add a comment |
I would like to install TideSDK on Ubuntu 13.10, but the project website does not contain any installation instructions. I am looking for basic instructions on how to install the tool. Thank you in advance for your help.
software-installation
I would like to install TideSDK on Ubuntu 13.10, but the project website does not contain any installation instructions. I am looking for basic instructions on how to install the tool. Thank you in advance for your help.
software-installation
software-installation
edited Jan 6 at 1:03
Ben Wingerter
asked Nov 3 '13 at 16:17
Ben WingerterBen Wingerter
3219
3219
2
By the way: they have their own section on stackoverflow: stackoverflow.com/questions/tagged/tidesdk
– Rinzwind
Nov 3 '13 at 18:59
add a comment |
2
By the way: they have their own section on stackoverflow: stackoverflow.com/questions/tagged/tidesdk
– Rinzwind
Nov 3 '13 at 18:59
2
2
By the way: they have their own section on stackoverflow: stackoverflow.com/questions/tagged/tidesdk
– Rinzwind
Nov 3 '13 at 18:59
By the way: they have their own section on stackoverflow: stackoverflow.com/questions/tagged/tidesdk
– Rinzwind
Nov 3 '13 at 18:59
add a comment |
1 Answer
1
active
oldest
votes
Mm... they doesn't have any instructions about how to install, so I had to play around figure out how to install it:
First, I'm downloading the TideSDK-1.3.1-beta for 64-bits. The following should work backwards and forward any version of Ubuntu if you use the same version of the software (Ubuntu installations methods are far more stables than 3rd party's).
wget http://cloud.github.com/downloads/TideSDK/TideSDK/TideSDK-1.3.1-beta-linux-x86-64.zip
Now unzip it. (I would recommend to start in a clean folder to prevent weird behaviors)
unzip TideSDK-1.3.1-beta-linux-x86-64.zip
we get 3 directories: modules, runtime and sdk (WHY!), create and move all the resulting directories to ~/.tidesdk directory (seems that they don't want to mess up with sudo, sighs), or in a nutshell:
mkdir ~/.tidesdk && cd ~/.tidesdk
wget http://cloud.github.com/downloads/TideSDK/TideSDK/TideSDK-1.3.1-beta-linux-x86-64.zip
unzip TideSDK-1.3.1-beta-linux-x86-64.zip
Supposedly, people used to TideSDK should know how to use it, but I don't. So, apparently for beginners, is easier to install the Developer App:
mkdir ~/TideSDK-Developer
cd ~/TideSDK-Developer
wget https://github.com/downloads/TideSDK/TideSDK/TideSDK-Developer-1.4.2-linux-x86-64.tgz
tar xf TideSDK-Developer-1.4.2-linux-x86-64.tgz
Now some notes:
Supposedly, you should be able to run it just typing ~/TideSDK-Developer/TideSDK Developer in a terminal, but in my case, it "segfault"-ed (throw a Segmentation Fault(coredumped)). Finding the reasons I found that to build the Developer helper I needed some dependencies (some of them I had already installed or using another versions) which wasn't included in the Getting Started guide:
sudo apt-get install build-essential ruby rubygems libzip-ruby1.9.1 scons libxml2-dev libgtk2.0-dev python2.7-dev ruby-dev libdbus-glib-1-dev libnotify-dev libgstreamer0.10-dev libxss-dev libcurl4-openssl-dev git-core libsoup2.4-1 libsoup2.4-dev libsoup-gnome2.4-dev libicu-dev libgnutls-dev libjpeg62-dev libenchant-dev libmcrypt4 libsqlite3-dev
If you are mysteriously unable to start the application, please install these dependencies. End of note.
Testing
You maybe want to checkout that everything is ok, so lets test a HelloWorld example:
wget https://github.com/TideSDK/TideSDK-HelloWorld/archive/master.zip
unzip master.zip
Now go to your application window, click import, look for the directory you decompress it, hit OK.

Once your app is imported, you will see a "Test & Package" tab.

Click it, then hit "Launch App",

you will be asked for confirmation to run the application, hit "Ok", now you should be seeing this window:

That's all.
2
Rant: this was needlessly complicated. Where is my good ol'python install.py?
– Braiam
Nov 3 '13 at 18:01
You get an upvote for all the work ;-)
– Rinzwind
Nov 3 '13 at 18:57
Thanks for your help! Just one question, does TideSDK have to be installed for the developer app to work or can I just install the developer app?
– Ben Wingerter
Nov 3 '13 at 23:14
I have no idea... as you can see by me comment above the whole thing took me about 1 hour to make it "work". I didn't fiddle around trying to install just the Developer app, but if I have to guess, install them both just in case.
– Braiam
Nov 3 '13 at 23:18
Ok thanks for all of your help!
– Ben Wingerter
Nov 3 '13 at 23:20
|
show 2 more comments
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f370540%2fhow-to-install-tidesdk-on-ubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Mm... they doesn't have any instructions about how to install, so I had to play around figure out how to install it:
First, I'm downloading the TideSDK-1.3.1-beta for 64-bits. The following should work backwards and forward any version of Ubuntu if you use the same version of the software (Ubuntu installations methods are far more stables than 3rd party's).
wget http://cloud.github.com/downloads/TideSDK/TideSDK/TideSDK-1.3.1-beta-linux-x86-64.zip
Now unzip it. (I would recommend to start in a clean folder to prevent weird behaviors)
unzip TideSDK-1.3.1-beta-linux-x86-64.zip
we get 3 directories: modules, runtime and sdk (WHY!), create and move all the resulting directories to ~/.tidesdk directory (seems that they don't want to mess up with sudo, sighs), or in a nutshell:
mkdir ~/.tidesdk && cd ~/.tidesdk
wget http://cloud.github.com/downloads/TideSDK/TideSDK/TideSDK-1.3.1-beta-linux-x86-64.zip
unzip TideSDK-1.3.1-beta-linux-x86-64.zip
Supposedly, people used to TideSDK should know how to use it, but I don't. So, apparently for beginners, is easier to install the Developer App:
mkdir ~/TideSDK-Developer
cd ~/TideSDK-Developer
wget https://github.com/downloads/TideSDK/TideSDK/TideSDK-Developer-1.4.2-linux-x86-64.tgz
tar xf TideSDK-Developer-1.4.2-linux-x86-64.tgz
Now some notes:
Supposedly, you should be able to run it just typing ~/TideSDK-Developer/TideSDK Developer in a terminal, but in my case, it "segfault"-ed (throw a Segmentation Fault(coredumped)). Finding the reasons I found that to build the Developer helper I needed some dependencies (some of them I had already installed or using another versions) which wasn't included in the Getting Started guide:
sudo apt-get install build-essential ruby rubygems libzip-ruby1.9.1 scons libxml2-dev libgtk2.0-dev python2.7-dev ruby-dev libdbus-glib-1-dev libnotify-dev libgstreamer0.10-dev libxss-dev libcurl4-openssl-dev git-core libsoup2.4-1 libsoup2.4-dev libsoup-gnome2.4-dev libicu-dev libgnutls-dev libjpeg62-dev libenchant-dev libmcrypt4 libsqlite3-dev
If you are mysteriously unable to start the application, please install these dependencies. End of note.
Testing
You maybe want to checkout that everything is ok, so lets test a HelloWorld example:
wget https://github.com/TideSDK/TideSDK-HelloWorld/archive/master.zip
unzip master.zip
Now go to your application window, click import, look for the directory you decompress it, hit OK.

Once your app is imported, you will see a "Test & Package" tab.

Click it, then hit "Launch App",

you will be asked for confirmation to run the application, hit "Ok", now you should be seeing this window:

That's all.
2
Rant: this was needlessly complicated. Where is my good ol'python install.py?
– Braiam
Nov 3 '13 at 18:01
You get an upvote for all the work ;-)
– Rinzwind
Nov 3 '13 at 18:57
Thanks for your help! Just one question, does TideSDK have to be installed for the developer app to work or can I just install the developer app?
– Ben Wingerter
Nov 3 '13 at 23:14
I have no idea... as you can see by me comment above the whole thing took me about 1 hour to make it "work". I didn't fiddle around trying to install just the Developer app, but if I have to guess, install them both just in case.
– Braiam
Nov 3 '13 at 23:18
Ok thanks for all of your help!
– Ben Wingerter
Nov 3 '13 at 23:20
|
show 2 more comments
Mm... they doesn't have any instructions about how to install, so I had to play around figure out how to install it:
First, I'm downloading the TideSDK-1.3.1-beta for 64-bits. The following should work backwards and forward any version of Ubuntu if you use the same version of the software (Ubuntu installations methods are far more stables than 3rd party's).
wget http://cloud.github.com/downloads/TideSDK/TideSDK/TideSDK-1.3.1-beta-linux-x86-64.zip
Now unzip it. (I would recommend to start in a clean folder to prevent weird behaviors)
unzip TideSDK-1.3.1-beta-linux-x86-64.zip
we get 3 directories: modules, runtime and sdk (WHY!), create and move all the resulting directories to ~/.tidesdk directory (seems that they don't want to mess up with sudo, sighs), or in a nutshell:
mkdir ~/.tidesdk && cd ~/.tidesdk
wget http://cloud.github.com/downloads/TideSDK/TideSDK/TideSDK-1.3.1-beta-linux-x86-64.zip
unzip TideSDK-1.3.1-beta-linux-x86-64.zip
Supposedly, people used to TideSDK should know how to use it, but I don't. So, apparently for beginners, is easier to install the Developer App:
mkdir ~/TideSDK-Developer
cd ~/TideSDK-Developer
wget https://github.com/downloads/TideSDK/TideSDK/TideSDK-Developer-1.4.2-linux-x86-64.tgz
tar xf TideSDK-Developer-1.4.2-linux-x86-64.tgz
Now some notes:
Supposedly, you should be able to run it just typing ~/TideSDK-Developer/TideSDK Developer in a terminal, but in my case, it "segfault"-ed (throw a Segmentation Fault(coredumped)). Finding the reasons I found that to build the Developer helper I needed some dependencies (some of them I had already installed or using another versions) which wasn't included in the Getting Started guide:
sudo apt-get install build-essential ruby rubygems libzip-ruby1.9.1 scons libxml2-dev libgtk2.0-dev python2.7-dev ruby-dev libdbus-glib-1-dev libnotify-dev libgstreamer0.10-dev libxss-dev libcurl4-openssl-dev git-core libsoup2.4-1 libsoup2.4-dev libsoup-gnome2.4-dev libicu-dev libgnutls-dev libjpeg62-dev libenchant-dev libmcrypt4 libsqlite3-dev
If you are mysteriously unable to start the application, please install these dependencies. End of note.
Testing
You maybe want to checkout that everything is ok, so lets test a HelloWorld example:
wget https://github.com/TideSDK/TideSDK-HelloWorld/archive/master.zip
unzip master.zip
Now go to your application window, click import, look for the directory you decompress it, hit OK.

Once your app is imported, you will see a "Test & Package" tab.

Click it, then hit "Launch App",

you will be asked for confirmation to run the application, hit "Ok", now you should be seeing this window:

That's all.
2
Rant: this was needlessly complicated. Where is my good ol'python install.py?
– Braiam
Nov 3 '13 at 18:01
You get an upvote for all the work ;-)
– Rinzwind
Nov 3 '13 at 18:57
Thanks for your help! Just one question, does TideSDK have to be installed for the developer app to work or can I just install the developer app?
– Ben Wingerter
Nov 3 '13 at 23:14
I have no idea... as you can see by me comment above the whole thing took me about 1 hour to make it "work". I didn't fiddle around trying to install just the Developer app, but if I have to guess, install them both just in case.
– Braiam
Nov 3 '13 at 23:18
Ok thanks for all of your help!
– Ben Wingerter
Nov 3 '13 at 23:20
|
show 2 more comments
Mm... they doesn't have any instructions about how to install, so I had to play around figure out how to install it:
First, I'm downloading the TideSDK-1.3.1-beta for 64-bits. The following should work backwards and forward any version of Ubuntu if you use the same version of the software (Ubuntu installations methods are far more stables than 3rd party's).
wget http://cloud.github.com/downloads/TideSDK/TideSDK/TideSDK-1.3.1-beta-linux-x86-64.zip
Now unzip it. (I would recommend to start in a clean folder to prevent weird behaviors)
unzip TideSDK-1.3.1-beta-linux-x86-64.zip
we get 3 directories: modules, runtime and sdk (WHY!), create and move all the resulting directories to ~/.tidesdk directory (seems that they don't want to mess up with sudo, sighs), or in a nutshell:
mkdir ~/.tidesdk && cd ~/.tidesdk
wget http://cloud.github.com/downloads/TideSDK/TideSDK/TideSDK-1.3.1-beta-linux-x86-64.zip
unzip TideSDK-1.3.1-beta-linux-x86-64.zip
Supposedly, people used to TideSDK should know how to use it, but I don't. So, apparently for beginners, is easier to install the Developer App:
mkdir ~/TideSDK-Developer
cd ~/TideSDK-Developer
wget https://github.com/downloads/TideSDK/TideSDK/TideSDK-Developer-1.4.2-linux-x86-64.tgz
tar xf TideSDK-Developer-1.4.2-linux-x86-64.tgz
Now some notes:
Supposedly, you should be able to run it just typing ~/TideSDK-Developer/TideSDK Developer in a terminal, but in my case, it "segfault"-ed (throw a Segmentation Fault(coredumped)). Finding the reasons I found that to build the Developer helper I needed some dependencies (some of them I had already installed or using another versions) which wasn't included in the Getting Started guide:
sudo apt-get install build-essential ruby rubygems libzip-ruby1.9.1 scons libxml2-dev libgtk2.0-dev python2.7-dev ruby-dev libdbus-glib-1-dev libnotify-dev libgstreamer0.10-dev libxss-dev libcurl4-openssl-dev git-core libsoup2.4-1 libsoup2.4-dev libsoup-gnome2.4-dev libicu-dev libgnutls-dev libjpeg62-dev libenchant-dev libmcrypt4 libsqlite3-dev
If you are mysteriously unable to start the application, please install these dependencies. End of note.
Testing
You maybe want to checkout that everything is ok, so lets test a HelloWorld example:
wget https://github.com/TideSDK/TideSDK-HelloWorld/archive/master.zip
unzip master.zip
Now go to your application window, click import, look for the directory you decompress it, hit OK.

Once your app is imported, you will see a "Test & Package" tab.

Click it, then hit "Launch App",

you will be asked for confirmation to run the application, hit "Ok", now you should be seeing this window:

That's all.
Mm... they doesn't have any instructions about how to install, so I had to play around figure out how to install it:
First, I'm downloading the TideSDK-1.3.1-beta for 64-bits. The following should work backwards and forward any version of Ubuntu if you use the same version of the software (Ubuntu installations methods are far more stables than 3rd party's).
wget http://cloud.github.com/downloads/TideSDK/TideSDK/TideSDK-1.3.1-beta-linux-x86-64.zip
Now unzip it. (I would recommend to start in a clean folder to prevent weird behaviors)
unzip TideSDK-1.3.1-beta-linux-x86-64.zip
we get 3 directories: modules, runtime and sdk (WHY!), create and move all the resulting directories to ~/.tidesdk directory (seems that they don't want to mess up with sudo, sighs), or in a nutshell:
mkdir ~/.tidesdk && cd ~/.tidesdk
wget http://cloud.github.com/downloads/TideSDK/TideSDK/TideSDK-1.3.1-beta-linux-x86-64.zip
unzip TideSDK-1.3.1-beta-linux-x86-64.zip
Supposedly, people used to TideSDK should know how to use it, but I don't. So, apparently for beginners, is easier to install the Developer App:
mkdir ~/TideSDK-Developer
cd ~/TideSDK-Developer
wget https://github.com/downloads/TideSDK/TideSDK/TideSDK-Developer-1.4.2-linux-x86-64.tgz
tar xf TideSDK-Developer-1.4.2-linux-x86-64.tgz
Now some notes:
Supposedly, you should be able to run it just typing ~/TideSDK-Developer/TideSDK Developer in a terminal, but in my case, it "segfault"-ed (throw a Segmentation Fault(coredumped)). Finding the reasons I found that to build the Developer helper I needed some dependencies (some of them I had already installed or using another versions) which wasn't included in the Getting Started guide:
sudo apt-get install build-essential ruby rubygems libzip-ruby1.9.1 scons libxml2-dev libgtk2.0-dev python2.7-dev ruby-dev libdbus-glib-1-dev libnotify-dev libgstreamer0.10-dev libxss-dev libcurl4-openssl-dev git-core libsoup2.4-1 libsoup2.4-dev libsoup-gnome2.4-dev libicu-dev libgnutls-dev libjpeg62-dev libenchant-dev libmcrypt4 libsqlite3-dev
If you are mysteriously unable to start the application, please install these dependencies. End of note.
Testing
You maybe want to checkout that everything is ok, so lets test a HelloWorld example:
wget https://github.com/TideSDK/TideSDK-HelloWorld/archive/master.zip
unzip master.zip
Now go to your application window, click import, look for the directory you decompress it, hit OK.

Once your app is imported, you will see a "Test & Package" tab.

Click it, then hit "Launch App",

you will be asked for confirmation to run the application, hit "Ok", now you should be seeing this window:

That's all.
answered Nov 3 '13 at 18:01
BraiamBraiam
51.5k20136220
51.5k20136220
2
Rant: this was needlessly complicated. Where is my good ol'python install.py?
– Braiam
Nov 3 '13 at 18:01
You get an upvote for all the work ;-)
– Rinzwind
Nov 3 '13 at 18:57
Thanks for your help! Just one question, does TideSDK have to be installed for the developer app to work or can I just install the developer app?
– Ben Wingerter
Nov 3 '13 at 23:14
I have no idea... as you can see by me comment above the whole thing took me about 1 hour to make it "work". I didn't fiddle around trying to install just the Developer app, but if I have to guess, install them both just in case.
– Braiam
Nov 3 '13 at 23:18
Ok thanks for all of your help!
– Ben Wingerter
Nov 3 '13 at 23:20
|
show 2 more comments
2
Rant: this was needlessly complicated. Where is my good ol'python install.py?
– Braiam
Nov 3 '13 at 18:01
You get an upvote for all the work ;-)
– Rinzwind
Nov 3 '13 at 18:57
Thanks for your help! Just one question, does TideSDK have to be installed for the developer app to work or can I just install the developer app?
– Ben Wingerter
Nov 3 '13 at 23:14
I have no idea... as you can see by me comment above the whole thing took me about 1 hour to make it "work". I didn't fiddle around trying to install just the Developer app, but if I have to guess, install them both just in case.
– Braiam
Nov 3 '13 at 23:18
Ok thanks for all of your help!
– Ben Wingerter
Nov 3 '13 at 23:20
2
2
Rant: this was needlessly complicated. Where is my good ol'
python install.py?– Braiam
Nov 3 '13 at 18:01
Rant: this was needlessly complicated. Where is my good ol'
python install.py?– Braiam
Nov 3 '13 at 18:01
You get an upvote for all the work ;-)
– Rinzwind
Nov 3 '13 at 18:57
You get an upvote for all the work ;-)
– Rinzwind
Nov 3 '13 at 18:57
Thanks for your help! Just one question, does TideSDK have to be installed for the developer app to work or can I just install the developer app?
– Ben Wingerter
Nov 3 '13 at 23:14
Thanks for your help! Just one question, does TideSDK have to be installed for the developer app to work or can I just install the developer app?
– Ben Wingerter
Nov 3 '13 at 23:14
I have no idea... as you can see by me comment above the whole thing took me about 1 hour to make it "work". I didn't fiddle around trying to install just the Developer app, but if I have to guess, install them both just in case.
– Braiam
Nov 3 '13 at 23:18
I have no idea... as you can see by me comment above the whole thing took me about 1 hour to make it "work". I didn't fiddle around trying to install just the Developer app, but if I have to guess, install them both just in case.
– Braiam
Nov 3 '13 at 23:18
Ok thanks for all of your help!
– Ben Wingerter
Nov 3 '13 at 23:20
Ok thanks for all of your help!
– Ben Wingerter
Nov 3 '13 at 23:20
|
show 2 more comments
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f370540%2fhow-to-install-tidesdk-on-ubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
By the way: they have their own section on stackoverflow: stackoverflow.com/questions/tagged/tidesdk
– Rinzwind
Nov 3 '13 at 18:59