On Wed, Feb 8, 2012 at 11:58 AM, Chris <plut...@gmail.com> wrote:

> This time the error is:
>
> fatal: Not a git repository (or any of the parent directories): .git
>
> I guess that I have not be able to establish a local git tree since the
> command
>
> git clone g...@github.com:matplotlib/matplotlib.git matplotlib.git
>
> did not go through.
>
>
I see, that is also the ssh version.  Here is the http read only version.
 Updated my complete instructions:

# install git to checkout the mpl src code
sudo apt-get install git

# install the pre-reqs to build matplotlib from source
sudo apt-get build-dep python-matplotlib

# get the latest released branch of matplotlib
git clone git://github.com/matplotlib/matplotlib.git matplotlib.git

# cd into the matplotlib directory and create a branch off of the release
branch to test
cd matplotlib.git
git checkout -b mdboom-pixel_marker v1.1.x

# pull in Michael's changes
git pull git://github.com/mdboom/matplotlib.git pixel_marker

# build the matplotlib source code
python setup.py build

# install it
sudo python setup.py install
------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to