NVIDIA / nv-wavenet

Reference implementation of real-time autoregressive wavenet inference
BSD 3-Clause "New" or "Revised" License
735 stars 126 forks source link

Unable to clone tacotron2 submodule #29

Closed ghostcow closed 6 years ago

ghostcow commented 6 years ago

Hi all, I'm failing cloning the repository with tacotron2 submodule. Is this a bug or am I doing something wrong? Thanks

➜  ~ git clone --recursive https://github.com/NVIDIA/nv-wavenet
Cloning into 'nv-wavenet'...
remote: Counting objects: 167, done.
remote: Compressing objects: 100% (66/66), done.
remote: Total 167 (delta 78), reused 111 (delta 64), pack-reused 36
Receiving objects: 100% (167/167), 6.67 MiB | 0 bytes/s, done.
Resolving deltas: 100% (95/95), done.
Checking connectivity... done.
Submodule 'pytorch/tacotron2' (git@github.com:NVIDIA/tacotron2) registered for path 'pytorch/tacotron2'
Cloning into 'pytorch/tacotron2'...
Warning: Permanently added the RSA host key for IP address '192.30.253.112' 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.
fatal: clone of 'git@github.com:NVIDIA/tacotron2' into submodule path 'pytorch/tacotron2' failed
RPrenger commented 6 years ago

Check PR #31 The repo was using ssh for submodules instead of https

ghostcow commented 6 years ago

Cool thanks!