07-26-2019, 06:08 PM
             
             
              You can start RoboDK in Ubuntu by doing something like this:
              
              
               
                
              
              
We'll improve the API so that the Python API automatically detects RoboDK if it has been installed in the default folder.
             
            
                Code:
               import os
import subprocess
# Change directory to RoboDK's default install folder
os.chdir('~/RoboDK')
# Start RoboDK
subprocess.Popen(['sh','RoboDK-Start.sh'])
               We'll improve the API so that the Python API automatically detects RoboDK if it has been installed in the default folder.
              
              