이제라도 기록하기

[오류 해결] curl: command not found - ubuntu 본문

Error

[오류 해결] curl: command not found - ubuntu

sssky00 2024. 6. 3. 01:11

발생한 오류

우분투 환경에서 파일을 다운로하려고 할 때 다음과 같은 오류가 발생하였다. 

curl : command not found error

 

curl 명령어는 명령줄에서 데이터를 전송하기 위해 사용되는 도구로 curl은 다양한 프로토콜을 지원하며, 주로 HTTP, HTTPS, FTP 등을 통해 데이터를 다운로드하거나 업로드할 때 사용된다.

 

해결 방법

curl을 설치하면 된다!

apt-get -y update
apt-get -y install curl

 

 

Reference

https://stackoverflow.com/questions/34571711/cant-run-curl-command-inside-my-docker-container