From 158552a2d4aa5c3d5f3d699939e72af4b1994699 Mon Sep 17 00:00:00 2001 From: colin Date: Thu, 12 Dec 2024 11:05:19 -0500 Subject: [PATCH] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e6ac2f6..3face12 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,9 @@ This guide provides an automated setup process for OpenSCAD and a curated set of ## Quick Start: Automated Installation Run the following command to install OpenSCAD, set up libraries, and validate the configuration: - +```bash curl -sL https://git.nixc.us/colin/OpenSCAD/raw/branch/main/install.sh | bash - +``` ### What the Script Does 1. Checks for Homebrew and installs it if not found. 2. Installs OpenSCAD using Homebrew if it is not already installed. @@ -27,7 +27,7 @@ curl -sL https://git.nixc.us/colin/OpenSCAD/raw/branch/main/install.sh | bash ### Verifying the Installation 1. Open OpenSCAD and create a new file. 2. Add the following test code: -``` +```c use ; cube([10, 10, 10], center = true); @@ -37,16 +37,16 @@ cube([10, 10, 10], center = true); Troubleshooting 1. Ensure Homebrew is installed by visiting https://brew.sh/. 2. Verify Git is installed and accessible by running: -``` +```bash git --version ``` 3. Confirm the libraries exist in the OpenSCAD libraries directory: -``` +```bash ls ~/Documents/OpenSCAD/libraries/ ``` 4. Verify OpenSCAD is installed by running: -``` +```bash openscad --version ``` \ No newline at end of file