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

MRG: docs for hnn-core integration #280

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
DOC: switch to installation scripts on master
Blake Caldwell committed Mar 30, 2021
commit 5bcd3909354dc60a6643b3df0b960c1326c14d16
4 changes: 2 additions & 2 deletions installer/mac/README.md
Original file line number Diff line number Diff line change
@@ -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
@@ -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
4 changes: 2 additions & 2 deletions installer/windows/native_install.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion installer/windows/wsl.md
Original file line number Diff line number Diff line change
@@ -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
```