Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarified software installation instructions #369

Merged
merged 1 commit into from
Aug 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions learners/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Setup

# Software

For this course you will need the UNIX shell, plus [SQLite3](https://www.sqlite.org/) or
For this course you will need the UNIX shell (described in the [UNIX Shell lesson](https://swcarpentry.github.io/shell-novice/#install-software)), plus [SQLite3](https://www.sqlite.org/) or
[DB Browser for SQLite](https://sqlitebrowser.org/).

If you are running **macOS** you should already have SQLite installed. You can run `sqlite3 --version`
Expand All @@ -15,10 +15,8 @@ If you are running **Linux**, you may already have SQLite3 installed, please use
`which sqlite3` to see the path of the program, otherwise you should be able to get it
from your package manager (on Debian/Ubuntu, you can use the command `apt install sqlite3`).

If you are running **Windows**, run installers as administrator.
Additionally, make sure you select the right installer version for your system.
We recommend that you use [git for Windows](https://gitforwindows.org/).
This is described in the [UNIX Shell lesson](https://swcarpentry.github.io/shell-novice/setup.html).
If you are running **Windows**, download installers and run them as administrator.
Make sure you select the right installer version for your system.
If the installer asks to add the path to the environment variables, check yes, otherwise you have to manually add the path of the executable to the `PATH` environmental variables.
This path informs the system where to find the executable program.

Expand Down
Loading