Skip to content

Commit

Permalink
DOC: have users install hnn-core master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Blake Caldwell committed Mar 30, 2021
1 parent 8ce3590 commit 6925d27
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion installer/centos/hnn-centos6.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ sudo yum -y install python34-setuptools
sudo easy_install-3.4 pip
pip3 install --upgrade matplotlib --user
pip3 install --upgrade nlopt scipy --user
pip3 install hnn-core
pip3 install https://api.github.com/repos/jonescompneurolab/hnn-core/zipball/master
sudo yum -y install ncurses-devel
sudo yum -y install openmpi openmpi-devel
sudo yum -y install libXext libXext-devel
Expand Down
2 changes: 1 addition & 1 deletion installer/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ LABEL org.label-schema.build-date=$BUILD_DATE \
org.label-schema.schema-version=$VCS_TAG

# install hnn-core
RUN sudo pip install hnn-core
RUN sudo pip install https://api.github.com/repos/jonescompneurolab/hnn-core/zipball/master

# install HNN
RUN sudo apt-get update && \
Expand Down
2 changes: 1 addition & 1 deletion installer/mac/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ The Xcode Command Line Tools package includes utilities for compiling code from

```bash
conda activate hnn
pip install hnn-core
pip install https://api.github.com/repos/jonescompneurolab/hnn-core/zipball/master
pip install nlopt
pip install mpi4py
```
Expand Down
2 changes: 1 addition & 1 deletion installer/ubuntu/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

```bash
conda activate hnn
pip install hnn-core
pip install https://api.github.com/repos/jonescompneurolab/hnn-core/zipball/master
pip install nlopt
pip install mpi4py
```
Expand Down
4 changes: 2 additions & 2 deletions installer/ubuntu/hnn-ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ if [[ "$USE_CONDA" -eq 0 ]]; then

# install hnn-core and prerequisites (e.g. NEURON)
echo "Installing python prequisites for HNN with pip..." | tee -a "$LOGFILE"
$PIP install --no-cache-dir pyqt5 nlopt psutil hnn-core &> "$LOGFILE"
$PIP install --no-cache-dir pyqt5 nlopt psutil https://api.github.com/repos/jonescompneurolab/hnn-core/zipball/master &> "$LOGFILE"

# WSL may not have nrnivmodl in PATH
if ! which nrnivmodl &> /dev/null; then
Expand Down Expand Up @@ -134,7 +134,7 @@ else
libopenmpi-dev &> "$LOGFILE"

# install hnn-core and prerequisites (e.g. NEURON)
pip install hnn-core mpi4py nlopt
pip install https://api.github.com/repos/jonescompneurolab/hnn-core/zipball/master mpi4py nlopt
fi

echo "Downloading runtime prerequisite packages..." | tee -a "$LOGFILE"
Expand Down
2 changes: 1 addition & 1 deletion scripts/setup-travis-osx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ conda env create -f environment.yml
conda install -y -n hnn openmpi mpi4py

conda activate hnn
pip install hnn-core nlopt
pip install https://api.github.com/repos/jonescompneurolab/hnn-core/zipball/master nlopt

0 comments on commit 6925d27

Please sign in to comment.