내 시스템에 Ubuntu 16.04가 설치되어 있는데, 다음 명령을 사용하여 터미널을 통해 meteor를 설치하려고 합니다.
sudo curl https://install.meteor.com/ | sh
내 터미널에 다음이 수신됩니다.
~$ sudo curl https://install.meteor.com/ | sh
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 6675 0 6675 0 0 3333 0 --:--:-- 0:00:02 --:--:-- 3334
Downloading Meteor distribution
1.1%
curl: (56) GnuTLS recv error (-9): A TLS packet with unexpected length was received.
gzip: stdin: unexpected end of file
tar: Unexpected EOF in archive
tar: Unexpected EOF in archive
tar: Error is not recoverable: exiting now
Installation failed.
답변1
인터넷 연결을 확인하세요. 다른 네트워크를 통해 다시 시도해 보세요. 그래도 작동이 안되는?
때로는 응답이 서버를 평안하게 유지하더라도 우리에게 조각조각 전달되는 경우도 있습니다(즉, 불완전하다는 뜻입니다).
다음을 수행할 수 있습니다.
- 방문하다https://install.meteor.com/
- Ctrl+를 눌러 S다른 이름으로 저장하세요.
meteor.sh
- 파일을 다운로드한 디렉토리로 변경하고,
- 그런 다음 실행 해야 할 수도 있습니다
chmod +x ./meteor.sh
.. sudo ./meteor.sh
답변2
답변을 보내주신 @rexford에게 감사드립니다. Ubuntu 14.04(LTS)를 실행 중인데 동일한 문제가 발생했습니다.
다음 단계에 따라 문제를 해결했습니다.
- 방문하다https://install.meteor.com
- 파일을 저장하세요. Ctrl+를 S다른 이름으로 누르세요.
meteor.sh
- 터미널을 열고 파일을 다운로드한 디렉터리를 변경합니다.
- 파일을 실행 가능하게 만들려면 다음 명령을 실행하십시오.
chmod 755 meteor.sh
- 이제 파일을 실행하십시오:
./meteor.sh
. 여기는sudo
필요하지 않습니다.