Skip to content

Commit 18a1894

Browse files
authored
added unix install instructions
1 parent e4f1a2e commit 18a1894

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,32 @@ The final demo can be seen [here](https://www.youtube.com/watch?v=IJV11OGTNT8) a
102102
* Install IPython (https://ipython.org/)
103103

104104
$ 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/)
105119

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

0 commit comments

Comments
 (0)