본문 바로가기
프로그래밍_기타

!git, !wget, !zip

by wjwkddyd221001 2022. 10. 1.

1. git

!git clone https://github.com/ultralytics/yolov3
!cd yolov3; pip install -r /content/yolov3/requirements.txt

2. wget

!wget -O [저장할 파일명] [파일 주소]

3. zip, unzip

!unzip [zip파일 위치] -d [압축 풀 위치]
!zip -r [압축 파일 위치] [압축할 파일 위치]