Getting a clone copy of the NumPy repository.
Hello everyone, I am a newbie on this open source world, and sincerely trying to make contribution to the development of Numpy. I was trying to learn about making patches from http://docs.scipy.org/doc/numpy/dev/gitwash/patching.html but unable to get the clone of Numpy repository. In the terminal error massage shown is - $hector@hector:~$ sudo git clone git://github.com/numpy/numpy.git [sudo] password for hector: Initialized empty Git repository in /home/hector/numpy/.git/ github.com[0: 207.97.227.239]: errno=Connection timed out fatal: unable to connect a socket (Connection timed out) $hector@hector:~$ My internet is quite good at the moment but unable to understand why am I getting this error. Any help regarding this will be extremely helpful and encouraging for me. Thanking you in anticipation. -- -Regards Hector Whenever you think you can or you can't, in either way you are right.
On Sun, Jan 16, 2011 at 10:09 PM, Hector troy <hector1618@gmail.com> wrote:
Hello everyone, I am a newbie on this open source world, and sincerely trying to make contribution to the development of Numpy. I was trying to learn about making patches from http://docs.scipy.org/doc/numpy/dev/gitwash/patching.html but unable to get the clone of Numpy repository.
In the terminal error massage shown is -
$hector@hector:~$ sudo git clone git://github.com/numpy/numpy.git [sudo] password for hector: Initialized empty Git repository in /home/hector/numpy/.git/ github.com[0: 207.97.227.239]: errno=Connection timed out fatal: unable to connect a socket (Connection timed out) $hector@hector:~$
You should try through http: it may be that your network blocks the git protocol/port: git clone http://github.com/numpy/numpy.git You should also avoid using sudo to clone repositories (although it is unlikely to be the cause of your issue). cheers, David
On Sun, Jan 16, 2011 at 8:31 PM, David Cournapeau <cournape@gmail.com>wrote:
On Sun, Jan 16, 2011 at 10:09 PM, Hector troy <hector1618@gmail.com> wrote:
Hello everyone, I am a newbie on this open source world, and sincerely trying to make contribution to the development of Numpy. I was trying to learn about making patches from http://docs.scipy.org/doc/numpy/dev/gitwash/patching.html but unable to get the clone of Numpy repository.
In the terminal error massage shown is -
$hector@hector:~$ sudo git clone git://github.com/numpy/numpy.git [sudo] password for hector: Initialized empty Git repository in /home/hector/numpy/.git/ github.com[0: 207.97.227.239]: errno=Connection timed out fatal: unable to connect a socket (Connection timed out) $hector@hector:~$
You should try through http: it may be that your network blocks the git protocol/port:
git clone http://github.com/numpy/numpy.git
You should also avoid using sudo to clone repositories (although it is unlikely to be the cause of your issue).
cheers,
David _______________________________________________ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://mail.scipy.org/mailman/listinfo/numpy-discussion
Mr. David, Thanks a lot, it worked. Hope you will help me with future quarries. Thanks again, -- -Regards Hector Whenever you think you can or you can't, in either way you are right.
participants (2)
-
David Cournapeau -
Hector troy