Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Fixing up issues in install guide #6463

Merged
merged 1 commit into from
May 26, 2017
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion docs/get_started/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ The following installation instructions have been tested on Ubuntu 14.04 and 16.
**Step 1** Install virtualenv for Ubuntu.

```bash
$ sudo apt-get update
$ sudo apt-get install -y python-dev python-virtualenv
```

Expand Down Expand Up @@ -125,7 +126,7 @@ Installing *MXNet* with pip requires a latest version of `pip`. Install the late

```bash
$ sudo apt-get update
$ sudo apt-get install -y wget python
$ sudo apt-get install -y wget python gcc
$ wget https://bootstrap.pypa.io/get-pip.py && sudo python get-pip.py
```

Expand Down
3 changes: 2 additions & 1 deletion setup-utils/install-mxnet-osx-python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,14 @@ download_mxnet() {
mv ${MXNET_HOME} ${MXNET_HOME_OLD}
fi
echo "Downloading MXNET source repositories from github"
git clone https://github.com/dmlc/mxnet.git ${MXNET_HOME} --recursive
git clone https://github.com/dmlc/mxnet.git ${MXNET_HOME} --recursive
}

download_mxnet
runme brew update
runme brew_pkg_install pkg-config
runme brew_pkg_install python
runme pip install --upgrade pip
brew install homebrew/science/openblas
runme brew_pkg_install opencv
# Needed for /usr/local/lib/graphviz to be created
Expand Down