Skip to content

Commit

Permalink
DOC: switch to installation scripts on master
Browse files Browse the repository at this point in the history
  • Loading branch information
Blake Caldwell committed Mar 30, 2021
1 parent 6925d27 commit 5bcd390
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions installer/mac/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
- The command below will run a script to check for existing installations of prerequisites. If a compatible version is installed, it will say which steps can be skipped below.

```bash
curl -s "https://raw.githubusercontent.com/blakecaldwell/hnn/integration_docs/installer/mac/check-pre.sh" | bash
curl -s "https://raw.githubusercontent.com/jonescompneurolab/hnn/master/installer/mac/check-pre.sh" | bash
```

## Prerequisite 1: Xcode Command Line Tools
Expand Down Expand Up @@ -59,7 +59,7 @@ The Xcode Command Line Tools package includes utilities for compiling code from
## Run post-install checks

```bash
curl -s "https://raw.githubusercontent.com/blakecaldwell/hnn/integration_docs/installer/mac/check-post.sh" | bash
curl -s "https://raw.githubusercontent.com/jonescompneurolab/hnn/master/installer/mac/check-post.sh" | bash
```

## Download HNN source code
Expand Down
4 changes: 2 additions & 2 deletions installer/windows/native_install.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ The PowerShell script used below will create a new directory called "hnn" in the
OR to download and run the script from a url:

```powershell
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/blakecaldwell/hnn/integration_docs/installer/windows/hnn-windows.ps1'))"
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/jonescompneurolab/hnn/master/installer/windows/hnn-windows.ps1'))"
```

OR from a powershell prompt:

```powershell
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/blakecaldwell/hnn/integration_docs/installer/windows/hnn-windows.ps1'))
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/jonescompneurolab/hnn/master/installer/windows/hnn-windows.ps1'))
```

- There will be a permission prompt to install Microsoft MPI and a couple of terminal windows will
Expand Down
2 changes: 1 addition & 1 deletion installer/windows/wsl.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Some notes:
Launch the Ubuntu application to open a command line and run the commands below to download and run a script that will install HNN and its prerequisites.

```bash
curl --remote-name https://raw.githubusercontent.com/blakecaldwell/hnn/integration_docs/installer/ubuntu/hnn-ubuntu.sh
curl --remote-name https://raw.githubusercontent.com/jonescompneurolab/hnn/master/installer/ubuntu/hnn-ubuntu.sh
bash hnn-ubuntu.sh
```

Expand Down

0 comments on commit 5bcd390

Please sign in to comment.