Last active
June 17, 2017 11:10
-
-
Save rebelmachina/76a2030092e2b196e1d9d7f52a8022a7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| Install Anaconda, graphical or command-line installer. If you have command-line installer, then make sure to have ~/.bash_profile: | |
| ``` | |
| export PATH="/Users/yourusername/anaconda3/bin:$PATH" | |
| ``` | |
| Then type in the terminal: | |
| ``` | |
| conda create -n cv_env numpy scipy scikit-learn matplotlib python=3 | |
| source activate cv_env | |
| conda install -c https://conda.binstar.org/menpo opencv3 | |
| ``` | |
| if you don't have your cv_env environment in notebook, you need to install: | |
| ``` | |
| conda install jupyter notebook ipykernel | |
| ``` | |
| ``` | |
| conda install nb_conda | |
| ``` | |
| For python 3.6: | |
| ``` | |
| conda install -c conda-forge nb_conda | |
| ``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment