Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hey guys
I've just downloaded open studio and having installed it I'm finding the icon jumps once and the application doesn't open.
MacOS - Monterey 12.0.1 (21A559)
Chip - Apple M1
Anyone else had such an issue and if so how did you resolve the problem.
Thanks
Is there any update on the M1 request?
Hello,
So far, there is no any update on the M1 request. I will keep you posted on this.
Best regards
Sabrina
Have you tried installing TOS 8. I have and it now works.
Hello,
Please have a look at this online installation guide about: TalendHelpCenter: Compatible Operating Systems
In the documentation we provide a list of operating systems that are supported, in the sense that we do provide an SLA and technical support for them. This doesn't mean other (non-listed) operating systems will not work but simply we won't necessarily be equipped to help you with any issue you may face with them.
Best regards
Sabrina
I'm curious... Eclipse by itself works perfectly on a M1 Mac on Big Sur. Tested it with Java SDK 8+ and two other Java installations (via Brew)
Isn't Talend based on Eclipse?
I've tried for 2 months to run Talend on M1 and it seems that the app can't find the correct/installed Java path.
I'm stuck at 6.1 on MacOS El Capitan.
Hello,
Talend studio depends on the eclipse version mostly.
Are you running 801 studio on a Mac OSX 12 Monterey OS?
Could you find the file Contents/Info.plist in studio path?
Best regards
Sabrina
Hi, could you provide the steps that you followed to install it? I have dowloaded the TOS 8.0.1 dmg, but when click on it to install it the installation does not start. I have installed java 11 Zulu. Thanks
Hello,
I made a testing and TOS does work on a Mac with an M1 chipset. If the installer doesn’t work, you will need to get the zip download to use it.
Please download talend open studio for data integration from our official website:
https://www.talend.com/lp/open-studio-for-data-integration/?ty=tos
and you will receive an email with zip file install.
As Talend 8.0 requires Java 11 to start.
If there comes a JVM selection issue, you could try the suggestions here
Feel free to let us know if it is OK with you.
Best regards
Sabrina
My 2 cents for those lost in Open Studio installation on a Mac Pro M1 chip:
1. Install Java Zulu 11 (https://www.azul.com/downloads/?package=jdk#download-openjdk)
2. Update the var in your profile (.zshrc)
```
export PATH="/Library/Java/JavaVirtualMachines/zulu-11.jdk/bin:$PATH"
export JAVA_HOME=`/usr/libexec/java_home -v 11.0.17`
```
3. Install Talend Open Studio 8.0.1 with the installer
4. In /Applications/TOSDI-8.0.1/studio/TOS_DI-macosx-cocoa.ini add the jdk line
```
-vm
/Library/Java/JavaVirtualMachines/zulu-11.jdk/Contents/Home/bin/java
-vmargs
-Xms512m
```
5. In /Applications/TOSDI-8.0.1/studio/TOS_DI-macosx-cocoa.app/Contents/Info.plist add this vm line
```
<array>
<!-- to use a specific Java version (instead of the platform's default) uncomment one of the following options,
or add a VM found via $/usr/libexec/java_home -V
<string>-vm</string><string>/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Commands/java</string>
<string>-vm</string><string>/Library/Java/JavaVirtualMachines/1.8.0.jdk/Contents/Home/bin/java</string>
-->
<string>-vm</string><string>/Library/Java/JavaVirtualMachines/zulu-11.jdk/Contents/Home/bin/java</string>
<string>--launcher.ini</string>
```
You're good to go !