From f885ba3d4b4db4730189a65713448a68e68467aa Mon Sep 17 00:00:00 2001 From: Levi Armstrong Date: Mon, 28 Oct 2024 08:18:06 -0500 Subject: [PATCH 1/3] Update README.md --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index ef124d60..258afbde 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,18 @@ You can install Qt Creator with the ROS corresponding plugin via the [snap store sudo snap install qtcreator-ros --classic ``` +### Debian Qt Creator and Plugin Installation + +Qt Creator can be installed via debian officially from [Qt](https://download.qt.io/official_releases/qtcreator). The debian is located in the `cpack_experimental` folder found under each version. Below is an example showing the steps to install both Qt Creator and Plugin. + +```bash +wget https://download.qt.io/official_releases/qtcreator/14.0/14.0.2/cpack_experimental/qtcreator-opensource-linux-x86_64-14.0.2.deb +sudo dpkg -i qtcreator-opensource-linux-x86_64-14.0.2.deb +echo 'export PATH=$PATH:/opt/qt-creator/bin' >> ~/.bashrc +wget https://github.com/ros-industrial/ros_qtc_plugin/releases/download/14.2/ROSProjectManager-14.2-Linux-x86_64.deb +sudo dpkg -i ROSProjectManager-14.2-Linux-x86_64.deb +``` + ### Manual Qt Creator and Plugin Installation Qt Creator can be installed via the official [online](https://www.qt.io/download-qt-installer-oss) and [offline](https://www.qt.io/offline-installers) installer. From fb08ad8829a4c661f9451e7dfcdf606725aa030f Mon Sep 17 00:00:00 2001 From: Levi Armstrong Date: Mon, 28 Oct 2024 09:00:58 -0500 Subject: [PATCH 2/3] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 258afbde..b17f3ce2 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,8 @@ Qt Creator can be installed via debian officially from [Qt](https://download.qt. wget https://download.qt.io/official_releases/qtcreator/14.0/14.0.2/cpack_experimental/qtcreator-opensource-linux-x86_64-14.0.2.deb sudo dpkg -i qtcreator-opensource-linux-x86_64-14.0.2.deb echo 'export PATH=$PATH:/opt/qt-creator/bin' >> ~/.bashrc +echo 'export PATH=$PATH:/opt/qt-creator/bin' >> ~/.profile +echo 'export XDG_DATA_DIRS=$XDG_DATA_DIRS:/opt/qt-creator/share/' >> ~/.profile wget https://github.com/ros-industrial/ros_qtc_plugin/releases/download/14.2/ROSProjectManager-14.2-Linux-x86_64.deb sudo dpkg -i ROSProjectManager-14.2-Linux-x86_64.deb ``` From 104873b0740463a304c76a04ce19b69dbde310a2 Mon Sep 17 00:00:00 2001 From: Levi Armstrong Date: Mon, 28 Oct 2024 09:09:15 -0500 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b17f3ce2..95a6140f 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ sudo snap install qtcreator-ros --classic ### Debian Qt Creator and Plugin Installation -Qt Creator can be installed via debian officially from [Qt](https://download.qt.io/official_releases/qtcreator). The debian is located in the `cpack_experimental` folder found under each version. Below is an example showing the steps to install both Qt Creator and Plugin. +Qt Creator can be installed via debian officially from [Qt](https://download.qt.io/official_releases/qtcreator). The debian is located in the `cpack_experimental` folder found under each version. Below is an example showing the steps to install both Qt Creator and Plugin. After going through the steps below you must log out and back in so the profile changes are active. Afterwards your system should be able to locate Qt Creator and allow you to add it to your favorits. ```bash wget https://download.qt.io/official_releases/qtcreator/14.0/14.0.2/cpack_experimental/qtcreator-opensource-linux-x86_64-14.0.2.deb