File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -102,4 +102,32 @@ The final demo can be seen [here](https://www.youtube.com/watch?v=IJV11OGTNT8) a
102
102
* Install IPython (https://ipython.org/ )
103
103
104
104
$ conda install ipython
105
+
106
+ #### Mac/Linux: Manually installing packages
107
+ * Create and activate a Python 3.5 conda environment called cv.
108
+
109
+ $ conda create -n cv python=3.5
110
+
111
+ $ activate cv
112
+ * Install Numpy (http://www.numpy.org/ )
113
+
114
+ $ conda install numpy
115
+ * Install Matplotlib (https://matplotlib.org/ )
116
+
117
+ $ conda install matplotlib
118
+ * Install Keras (https://keras.io/ )
105
119
120
+ $ conda install keras
121
+ - This should also install tensorflow
122
+ * Install h5py (http://www.h5py.org/ )
123
+
124
+ $ conda install h5py
125
+ * Install Jupyter Notebook (http://jupyter.org/ )
126
+
127
+ $ conda install jupyter notebook
128
+ * Install IPython (https://ipython.org/ )
129
+
130
+ $ conda install ipython
131
+ * Install OpenCV3 (https://opencv.org/ )
132
+
133
+ $ conda install -c conda-forge opencv
You can’t perform that action at this time.
0 commit comments