Created
May 18, 2015 17:35
-
-
Save jetsonhacks/3e0310cfde4c5e52138d to your computer and use it in GitHub Desktop.
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
#!/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