1 2 3 4 5 6 |
net-ssh requires the following gems for ed25519 support: * rbnacl (>= 3.2, < 5.0) * rbnacl-libsodium, if your system doesn't have libsodium installed. * bcrypt_pbkdf (>= 1.0, < 2.0) See https://github.com/net-ssh/net-ssh/issues/478 for more information Gem::MissingSpecError : "Could not find 'rbnacl' (< 5.0, >= 3.2.0) among 263 total gem(s) |
Solution:
1 |
chef gem install 'rbnacl:<5.0' rbnacl-libsodium 'bcrypt_pbkdf:<2.0' |
Leave a Reply