Skip to content
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
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ A command-line interface for interacting with JuliaHub, a platform for Julia com
Install the latest release automatically:

```bash
curl -sSfL https://raw.githubusercontent.com/JuliaComputing/gojuliahub/main/install.sh | sh
curl -sSfL https://raw.githubusercontent.com/JuliaComputing/jh/main/install.sh | bash
```

Or download and run the script manually:

```bash
wget https://raw.githubusercontent.com/JuliaComputing/gojuliahub/main/install.sh
wget https://raw.githubusercontent.com/JuliaComputing/jh/main/install.sh
chmod +x install.sh
./install.sh
```
Expand All @@ -35,12 +35,12 @@ chmod +x install.sh

**Custom installation directory example:**
```bash
curl -sSfL https://raw.githubusercontent.com/JuliaComputing/gojuliahub/main/install.sh | sh -s -- --install-dir /usr/local/bin
curl -sSfL https://raw.githubusercontent.com/JuliaComputing/jh/main/install.sh | bash -s -- --install-dir /usr/local/bin
```

### Download Binary Manually

Download the latest release from the [GitHub releases page](https://github.com/JuliaComputing/gojuliahub/releases).
Download the latest release from the [GitHub releases page](https://github.com/JuliaComputing/jh/releases).

Available for:
- Linux (amd64, arm64)
Expand All @@ -50,8 +50,8 @@ Available for:
### Build from Source

```bash
git clone https://github.com/JuliaComputing/gojuliahub
cd gojuliahub
git clone https://github.com/JuliaComputing/jh
cd jh
go build -o jh .
```

Expand Down