Skip to content

Instantly share code, notes, and snippets.

@oxtopus
Forked from anonymous/history.txt
Last active June 10, 2024 16:28
Show Gist options
  • Save oxtopus/8431238 to your computer and use it in GitHub Desktop.
Save oxtopus/8431238 to your computer and use it in GitHub Desktop.
Installing NuPIC from scratch on Ubuntu 13.10
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