728x90
wget 명령은 Linux 시스템에서 사용되는 가장 중요한 유틸리티 중 하나이며 웹에서 이미지, 문서, PDF 등을 다운로드하는 데 도움이 됩니다. Linux를 사용하든 다른 OS를 사용하든 원격 서버의 파일로 작업하려면 wget 명령을 알아야 합니다.
wget command not found
- wget이 없다고 알려줌
# wget 버전 확인
wget -V
# 설치 되어 있는지 확인
which wget
# Ubunti Linux에 wget 설치
sudo apt-get install wget
해당 방법이 안 된다면 인터넷에서 다운로드 가능
# 파일 다운로드
curl -O https://ftp.gnu.org/gnu/wget/wget-latest.tar.gz
# 압축 해제
tar zxvf wget-latest.tar.gz
# 폴더로 이동
cd wget-XXX
./configure
make
sudo make install
728x90
'Skills > Error' 카테고리의 다른 글
bash: curl: command not found (0) | 2023.03.20 |
---|---|
error: command 'gcc' failed: No such file or directory: 'gcc' (0) | 2023.03.13 |
ModuleNotFoundError: No module named 'skimage' (0) | 2022.12.13 |
[Python] WARNING: There was an error checking the latest version of pip. (0) | 2022.12.11 |
RuntimeError: CUDA error: device-side assert triggered (0) | 2022.11.01 |
댓글