Hi


On 04/14/2011 10:25 PM, paulo lopes wrote:
>ok, i never worked with git before but what i did was :
>$ cd graph_tool
>$git clone git://git.skewed.de/graph-tool
>then to get the last version :


>$ git pull
>and i get
>fatal: Not a git repository (or any of the parent directories): .git

>No, you don't need to do a git pull like this.  You have to do a git
>clone command like you did, but _outside_ the graph-tool directory,
>since the directory will be created for you by git. Note that you need
>to make sure there is _no_ graph-tool directory lying around! Once you
>have cloned the tree, you go to the newly created graph-tool directory
>and do:

ok now i did the clone outside de graph-tool directory
cd graph-tool -> the new one

   >./autogen.sh
this command did't work, give me a python version error like the first time i made ./configure
so i made :
sudo ./autogen.sh --prefix=/opt/local --with-boost=/opt/local --disable-visibility  PYTHON_VERSION=2.7 LDFLAGS=-L/opt/local/lib/
and it woks

   >./configure [your configure options]
and i did the same to configure
sudo ./configure --prefix=/opt/local --with-boost=/opt/local --disable-visibility  PYTHON_VERSION=2.7 LDFLAGS=-L/opt/local/lib/

but when run the make command, give me a error
  > make

Cheers,