File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments