Skip to content

Instantly share code, notes, and snippets.

@jetsonhacks
Created May 18, 2015 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jetsonhacks/3e0310cfde4c5e52138d to your computer and use it in GitHub Desktop.
Save jetsonhacks/3e0310cfde4c5e52138d to your computer and use it in GitHub Desktop.
#!/bin/sh
# Install Python prerequisites on NVIDIA Jetson TK1 for iTorch
# This is for https://github.com/facebook/iTorch
# L4T 21.3, Torch 7 (http://torch.ch)
# iPython is loaded using pip, as repository version is 1.x version, > 2.0 is needed
if [ $(id -u) != 0 ]; then
echo "This script requires root permissions"
echo "$ sudo "$0""
exit
fi
apt-get install libzmq3-dev
apt-get install python-pip
pip install ipython
apt-get python-zmq
apt-get python-markupsafe
apt-get python-jsonschema
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment