FORUM CTRLX AUTOMATION
ctrlX World Partner Apps for ctrlX AUTOMATION
12-13-2022 09:24 AM
When I try to build my snap for the example 'samples-cpp/registernode', I get the error:
Failed to fetch stage packages: Error downloading packages for part 'registernode': The package 'ctrlx-datalayer' was not found..
I created the App Build Environment with V1.16 and downloaded the newest SDK, which is V1.18.
Solved! Go to Solution.
12-13-2022 09:37 AM - edited 12-13-2022 09:49 AM
Reason:
There are three ways to solve this:
sudo apt update
Install newest ctrlx-datalayer package
sudo apt-get install -y ctrlx-datalayer
12-13-2022 09:50 AM
Hello Nick,
Is the ctrlX Works v1.18 available to download?
Warmest regards,
12-13-2022 09:57 AM - edited 12-13-2022 10:14 AM
Additional Information:
If you still like to use the SDK V1.16 (or V1.14), you can still do that. You can download them manually form github->releases. Or you can modify the install-sdk.sh script. I deleted the part, where it searches for the newest release on github, and just download the SDK V1.16 I want to use.
#!/usr/bin/env bash
sudo snap install snapcraft --classic
source install-deb.sh
sudo apt-get install jq -y
rm ctrlx-automation-sdk-*.zip*
rm ctrlx-datalayer-*.deb*
wget https://github.com/boschrexroth/ctrlx-automation-sdk/releases/download/1.16.0/ctrlx-automation-sdk-1.16.0.zip
unzip -XK $(ls ctrlx-automation-sdk-*.zip) -d sdk-1-16
chmod a+x sdk-1-16/ctrlx-automation-sdk/bin/oss.flatbuffers*/ubuntu20-gcc-*/release/flatc
chmod a+x sdk-1-16/ctrlx-automation-sdk/bin/framework/ubuntu20-gcc-*/rexroth-automation-frame
find sdk-1-16/ctrlx-automation-sdk/ -name '*.sh' -exec chmod +x {} \;
sudo dpkg -r ctrlx-datalayer
sudo dpkg -i sdk-1-16/ctrlx-automation-sdk/deb/ctrlx-datalayer-*.deb
12-13-2022 10:03 AM - edited 12-13-2022 10:04 AM
Hi Open,
You can download the ctrlX WORKS V1.18 Version in the Collaboration Room.
Please keep also this in mind if you want to download versions with PT status.
Best regards,
Nick