shawntan / neural-turing-machines

Attempt at implementing system described in "Neural Turing Machines." by Graves, Alex, Greg Wayne, and Ivo Danihelka. (http://arxiv.org/abs/1410.5401)
https://blog.wtf.sg/category/neural-turing-machines/
465 stars 96 forks source link

Can't clone theano_toolkit with `git clone --recursive` #13

Closed eulerreich closed 9 years ago

eulerreich commented 9 years ago

I'm getting a Permission Denied (publickey) error. The full error is

$> git clone --recursive https://github.com/shawntan/neural-turing-machines                                                                    
Cloning into 'neural-turing-machines'...                                                                                                       
remote: Counting objects: 201, done.                                                                                                           
remote: Total 201 (delta 0), reused 0 (delta 0), pack-reused 201                                                                               
Receiving objects: 100% (201/201), 616.34 KiB | 0 bytes/s, done.                                                                               
Resolving deltas: 100% (103/103), done.                                                                                                        
Checking connectivity... done.                                                                                                                 
Submodule 'theano_toolkit' (git@github.com:shawntan/theano_toolkit.git) registered for path 'theano_toolkit'                                   
Cloning into 'theano_toolkit'...                                                                                                               
Warning: Permanently added the RSA host key for IP address '192.30.252.131' to the list of known hosts.                                        
Permission denied (publickey).                                                                                                                 
fatal: Could not read from remote repository.                                                                                                  

Please make sure you have the correct access rights                                                                                            
and the repository exists.                                                                                                                     
Clone of 'git@github.com:shawntan/theano_toolkit.git' into submodule path 'theano_toolkit' failed
osblinnikov commented 9 years ago

I have the same problem:

 git clone --recursive https://github.com/shawntan/neural-turing-machines.git
 ........
Submodule 'theano_toolkit' (git@github.com:shawntan/theano_toolkit.git) registered for path 'theano_toolkit'
Cloning into 'theano_toolkit'...
The authenticity of host 'github.com (192.30.252.131)' can't be established.
RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'github.com,192.30.252.131' (RSA) to the list of known hosts.
Permission denied (publickey).
fatal: Could not read from remote repository.
shawntan commented 9 years ago

Think I fixed it.

Changed the .gitmodules file to use https://github.com/theano_toolkit.git instead.