From 95def0612215f211870665b218bc0e372a9ee52e Mon Sep 17 00:00:00 2001 From: Ronak Kumar Samantray <1369203+rokrsa@users.noreply.github.com> Date: Mon, 12 Apr 2021 17:16:30 -0900 Subject: [PATCH 1/2] Updating commands for macOS * brew to install pyqt5 * instead brew to install zeromq, install pyzmq via pip3 --- Guide-GroundSystem.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Guide-GroundSystem.md b/Guide-GroundSystem.md index 1149c6f..c047577 100644 --- a/Guide-GroundSystem.md +++ b/Guide-GroundSystem.md @@ -106,10 +106,10 @@ These are NOT kept up-to-date, but included for historical reference (may be eas ### Installing and running cFS Ground System on macOS, using Homebrew ``` -$ brew install pyqt -$ brew install zeromq +$ brew install pyqt5 +$ pip3 install pyzmq $ ( cd Subsystems/cmdUtil/ && make ) -$ python GroundSystem.py +$ python3 GroundSystem.py ``` ### Installing and running cFS Ground System on CentOS 6 From 18e3a34d4b81761e739216d042f999a2935cf12c Mon Sep 17 00:00:00 2001 From: Ronak Kumar Samantray <1369203+rokrsa@users.noreply.github.com> Date: Fri, 23 Apr 2021 12:50:16 +0530 Subject: [PATCH 2/2] Updating pyqt5 installation Using pip3 instead of brew --- Guide-GroundSystem.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Guide-GroundSystem.md b/Guide-GroundSystem.md index c047577..49f85e3 100644 --- a/Guide-GroundSystem.md +++ b/Guide-GroundSystem.md @@ -106,7 +106,7 @@ These are NOT kept up-to-date, but included for historical reference (may be eas ### Installing and running cFS Ground System on macOS, using Homebrew ``` -$ brew install pyqt5 +$ pip3 install pyqt5 $ pip3 install pyzmq $ ( cd Subsystems/cmdUtil/ && make ) $ python3 GroundSystem.py