-
-
Save oxtopus/8431238 to your computer and use it in GitHub Desktop.
Installing NuPIC from scratch on Ubuntu 13.10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get update | |
sudo apt-get install python-dev git python-pip automake libtool libssl-dev | |
git clone https://github.com/numenta/nupic.git | |
mkdir -p nta/eng | |
echo " | |
export NTA=$HOME/nta/eng | |
export NUPIC=$HOME/nupic | |
export BUILDDIR=/tmp/ntabuild | |
export MK_JOBS=3 | |
source $HOME/nupic/env.sh" >> ~/.bashrc | |
source ~/.bashrc | |
pip install --user -r $NUPIC/external/common/requirements.txt | |
$NUPIC/build.sh | |
cd $NUPIC | |
./run_tests.sh | |
$NTA/bin/htmtest | |
$NTA/bin/testeverything | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment