Skip to content

Instantly share code, notes, and snippets.

@rebelmachina
Last active June 17, 2017 11:10
Show Gist options
  • Select an option

  • Save rebelmachina/76a2030092e2b196e1d9d7f52a8022a7 to your computer and use it in GitHub Desktop.

Select an option

Save rebelmachina/76a2030092e2b196e1d9d7f52a8022a7 to your computer and use it in GitHub Desktop.
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