From 799e5d16a485ba3eef7fbc5f585c083e9c5d072b Mon Sep 17 00:00:00 2001 From: nonoche2 Date: Wed, 27 Sep 2023 13:55:50 -0400 Subject: [PATCH 1/4] Update README.md added instructions to install and launch on macOS --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/README.md b/README.md index 5653465..da4929a 100644 --- a/README.md +++ b/README.md @@ -140,6 +140,26 @@ Other Linux distributions can download the source code. The program needs Python Download the source code and install python3.6 or greater. Make sure to install Tk/Tcl with it. +* macOS + +You need Python3.6 or greater and Tkinter. You can install them with Brew. +If you don't have it already, install Brew by typing in the terminal: +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" + +Then to install Python: +Brew install Python3 + +Then to install Tkinter: +Brew install Tkinter + +Download the source of the Steam Metadata Editor, then navigate to its folder in the terminal: +cd PATH/TO/FOLDER +cd src + +then type this to launch the app: + +Python3 main.py + --- ## How does it work? From 0a8874d1408b5c28beca688f80e9381d59a8687d Mon Sep 17 00:00:00 2001 From: nonoche2 Date: Wed, 27 Sep 2023 14:16:59 -0400 Subject: [PATCH 2/4] Update README.md made the terminal commands for macOS copyable --- README.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index da4929a..bea57f1 100644 --- a/README.md +++ b/README.md @@ -144,22 +144,29 @@ Download the source code and install python3.6 or greater. Make sure to install You need Python3.6 or greater and Tkinter. You can install them with Brew. If you don't have it already, install Brew by typing in the terminal: +``` /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" +``` Then to install Python: +``` Brew install Python3 - +``` Then to install Tkinter: +``` Brew install Tkinter +``` Download the source of the Steam Metadata Editor, then navigate to its folder in the terminal: +``` cd PATH/TO/FOLDER cd src +``` then type this to launch the app: - +``` Python3 main.py - +``` --- ## How does it work? From 63e4880dbe606f8694b2b13c103bac2ebc1a0df1 Mon Sep 17 00:00:00 2001 From: nonoche2 Date: Wed, 27 Sep 2023 17:01:54 -0400 Subject: [PATCH 3/4] Update README.md fixed tkinter install command --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bea57f1..3a4665c 100644 --- a/README.md +++ b/README.md @@ -150,11 +150,11 @@ If you don't have it already, install Brew by typing in the terminal: Then to install Python: ``` -Brew install Python3 +brew install Python3 ``` Then to install Tkinter: ``` -Brew install Tkinter +brew install python-tk ``` Download the source of the Steam Metadata Editor, then navigate to its folder in the terminal: From a47a8acb4eb23c55623993fe9135f601ce9b3bc8 Mon Sep 17 00:00:00 2001 From: nonoche2 Date: Wed, 27 Sep 2023 17:04:59 -0400 Subject: [PATCH 4/4] Update README.md removed instructions for installation of python3 as it is also installed by the python-tk formula --- README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index 3a4665c..46abe03 100644 --- a/README.md +++ b/README.md @@ -148,11 +148,7 @@ If you don't have it already, install Brew by typing in the terminal: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" ``` -Then to install Python: -``` -brew install Python3 -``` -Then to install Tkinter: +Then to install Python and Tkinter: ``` brew install python-tk ```