install package following error show

0

[ install fscoiety ]

git clone https://github.com/Manisso/fsociety.git
Cloning into 'fsociety'...
fatal: unable to access 'https://github.com/Manisso/fsociety.git/': 
gnutls_handshake() failed: An unexpected TLS packet was received.

how can fix it?

deveshchauhan

Posted 2019-11-04T14:35:55.067

Reputation: 1

Are you behind a proxy? – nKn – 2019-11-04T14:59:43.450

yes i am use proxy server @nkn – deveshchauhan – 2019-11-04T15:46:41.760

Answers

0

If you're behind a proxy you have to set the global proxy parameters in git.

git config --global http.proxy http://<your_proxy>:<your_port>
git config --global https.proxy https://<your_proxy>:<your_port>

nKn

Posted 2019-11-04T14:35:55.067

Reputation: 4 960

following error will show root@devesh:~# git config --global http.proxy http://<172.31.100.27>:<3128> bash: syntax error near unexpected token `3128' @nKn – deveshchauhan – 2019-11-05T08:55:20.843

you have to remove the < and > characters, so: git config --global http.proxy http://172.31.100.27:3128 – nKn – 2019-11-05T09:15:06.760