728x90
!wget은 jupyter notebook에서는 실행이 안되는 문제가 발생한다.
In [19]:
!wget https://bit.ly/fruits_300_data -O fruits_300.npy
주피터 노트북에서 해결하는 법
1) wget 라이브러리 설치
먼저 wget을 teminal에 설치한다
In [1]:
pip install wget
2) wget으로 다운로드
In [1]:
import wget
url= 'https://bit.ly/fruits_300_data'
wget.download(url)
Out[1]:
In [2]:
import numpy as np
fruits = np.load('fruits_300_data')
728x90
'Data Analytics with python > [Error solving]' 카테고리의 다른 글
[ValueError] ValueError: invalid literal for int() with base 10: '449.00' (0) | 2023.02.04 |
---|---|
matplotlib 한글 깨짐 현상 (0) | 2022.02.25 |
댓글