본문 바로가기
Data Analytics with python/[Error solving]

내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는배치 파일이 아닙니다.

by 보끔밥0130 2022. 2. 25.
728x90

 

 

 

 

!wget은 jupyter notebook에서는 실행이 안되는 문제가 발생한다.

In [19]:
!wget https://bit.ly/fruits_300_data -O fruits_300.npy
 
'wget'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는
배치 파일이 아닙니다.
 

주피터 노트북에서 해결하는 법

 

1) wget 라이브러리 설치
먼저 wget을 teminal에 설치한다

In [1]:
pip install wget
 
Requirement already satisfied: wget in c:\users\kang\anaconda3\lib\site-packages (3.2)
Note: you may need to restart the kernel to use updated packages.
 

2) wget으로 다운로드

In [1]:
import wget
url= 'https://bit.ly/fruits_300_data'
wget.download(url)
Out[1]:
'fruits_300_data'
In [2]:
import numpy as np
fruits = np.load('fruits_300_data')
728x90

댓글