Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | 7 |
| 8 | 9 | 10 | 11 | 12 | 13 | 14 |
| 15 | 16 | 17 | 18 | 19 | 20 | 21 |
| 22 | 23 | 24 | 25 | 26 | 27 | 28 |
Tags
- Dictionary
- numpy
- string
- hierarchical_clustering
- dendrogram
- 최솟값
- 최댓값
- nan
- insert()
- del
- analizer
- 분류 결과표
- IN
- sklearn
- count()
- len()
- Machine Learning
- list
- 덴드로그램
- DataAccess
- Python
- 반복문
- append()
- DataFrame
- data
- pandas
- wcss
- elbow method
- function
- matplotlib
Archives
- Today
- Total
개발공부
구글 코랩에서 인터넷에 있는 파일을 다운로드 하는 방법 본문
리눅스의 wget 명령어를 통해 인터넷에 잇는 파일을 다운로드 할 수 있다.
!wget --no-check-certificate \
[url] \
-O [path]
아래는 실제 zip파일을 다운받는 코드이다.
!wget --no-check-certificate \
https://storage.googleapis.com/laurencemoroney-blog.appspot.com/horse-or-human.zip \
-O /tmp/horse-or-human.zip
