Archive
Posts Tagged ‘scipy’
how to become a data scientist in Python
May 19, 2015
Leave a comment
In this post I found a detailed learning path on how to become proficient in data science.
They also made an infographic (see this post).
Click to see the full version.
(Here is a backup of the image if the original site went down.)
Categories: python
data science, machine learning, numpy, scipy
Install NumPy and SciPy on Ubuntu
November 9, 2011
9 comments
On Ubuntu 11.10, here is what I had to do:
sudo pip install numpy sudo apt-get install libatlas-base-dev gfortran sudo pip install scipy sudo pip install matplotlib # recommended
Line 2 was necessary for SciPy, otherwise it was complaining that BLAS and a Fortran compiler were missing. Note that gfortran replaces the package g77.
Getting started with numpy, scipy, matplotlib
September 13, 2011
Leave a comment
Installing matplotlib
sudo apt-get install tcl8.5-dev tk8.5-dev sudo pip install matplotlib
Categories: python
install matplotlib, matplotlib, numpy, scipy

You must be logged in to post a comment.