Get your machine ready to learn datascience using python: numpy scikit-learn matplotlib
An easy way to get numpy scikit-learn and matplotlib
This is not necessarily the best way to do it, but it is how I got it to work on my Mac (after spending few hours trying to have matplotlib to run)
First, download Anaconda from here
Then, type the below command in the terminal
conda create --name yourvenvname python=2.7 matplotlib numpy scikit-learn
Next, type the below on the terminal
source activate yourvenvname
Easy right!
Comments
Post a Comment