Skip to content

Commit 48c4771

Browse files
committed
Add installation feature
1 parent 5f11e70 commit 48c4771

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

Makefile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
# Target System is Ubuntu/Linux 64-bit, CPU only, Python 2.7
3+
# Plase change this file according to your system.
4+
install: install_essential install_tensorflow install_scipy
5+
6+
7+
install_essential:
8+
sudo apt-get update
9+
sudo apt-get install python-pip python-dev
10+
11+
install_tensorflow:
12+
# So far we only target on Ubuntu/Linux 64-bit, CPU only, Python 2.7
13+
@echo "Install Tensorflow"
14+
export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.11.0rc0-cp27-none-linux_x86_64.whl
15+
sudo pip install --upgrade $TF_BINARY_URL
16+
17+
install_scipy:
18+
@echo "Install Scipy"
19+
sudo apt-get install python-numpy python-scipy python-matplotlib ipython ipython-notebook python-pandas python-sympy python-nose

0 commit comments

Comments
 (0)