From 6318327a1565e60a9033fb3c50dd9cab536880ed Mon Sep 17 00:00:00 2001 From: Falko Habel Date: Thu, 2 May 2024 17:29:42 +0200 Subject: [PATCH] added missing statements --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 107bcb0..1333a6b 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,10 @@ This Tic-Tac-Toe game is a simple single-player experience where the player take `Go` programming language installed on your machine: To run the TicTacToe application, you need to have the Go programming language installed on your computer. You can download and install Go from the official website (https://golang.org/dl/). Follow the instructions for your specific operating system to set up the Go environment. `Fyne` framework for building cross-platform GUI applications: The application uses the Fyne framework to create the graphical user interface (GUI) for the TicTacToe game. You can install the Fyne framework using the following command: +```bash go get fyne.io/fyne/v2@latest - +go install fyne.io/fyne/v2/cmd/fyne@latest +``` ## How to run the application 1. Clone the repository: Open your terminal and run the following command to clone the TicTacToe repository to your local machine: @@ -33,7 +35,7 @@ go run main.go # Windows: fyne package -os windows -icon ./resources/icon.png # Linux: -fyne package -os linux -icon ./resources/icon.png #Could not test +fyne package -os linux -icon ./resources/icon.png #gives you ar .tar.xz file # MacOS: fyne package -os macos -icon ./resources/icon.png #Could not Test ```