From 1e7c6501595a900c372cd0d098ddd9523b68da2c Mon Sep 17 00:00:00 2001 From: Bicoloursnake <60069210+Bicoloursnake@users.noreply.github.com> Date: Sun, 18 Jun 2023 07:21:12 -0400 Subject: [PATCH] Docs: Updating the macOS guide for 'New Terminal at Folder' (#1865) * Update mac_en.md Added an alternate option to simply terminal navigation * Update worlds/generic/docs/mac_en.md Co-authored-by: black-sliver <59490463+black-sliver@users.noreply.github.com> --- worlds/generic/docs/mac_en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/generic/docs/mac_en.md b/worlds/generic/docs/mac_en.md index dc7e32fa..29047818 100644 --- a/worlds/generic/docs/mac_en.md +++ b/worlds/generic/docs/mac_en.md @@ -15,7 +15,7 @@ Here is a list of software to install and source code to download. 3. Open terminal and navigate to your Archipelago directory. ## Setting up a Virtual Environment It is generally recommended that you use a virtual environment to run python based software to avoid contamination that can break some software. If Archipelago is the only piece of software you use that runs from python source code however, it is not necessary to use a virtual environment. -1. Open terminal and navigate to the Archipelago directory. +1. Open terminal and navigate to the Archipelago directory. Alternatively, right click on the Archipelago folder in Finder and select 'New Terminal at Folder'. 2. Run the command `python3 -m venv venv` to create a virtual environment. Running this command will create a new directory at the specified path, so make sure that path is clear for a new directory to be created. 3. Run the command `source venv/bin/activate` to activate the virtual environment. 4. If you want to exit the virtual environment, run the command `deactivate`.