简体   繁体   中英

wget not recognized in Jupyter through Anaconda

I'm using a Jupyter notebook through Anaconda.

I have a command: ! wget https://url ! wget https://url

I get the error:

'wget' is not recognized as an internal or external command, operable program or batch file.

I already tried installing wget on my local Anaconda (as I expected, it doesn't work)

Thanks

wget is a free software package for retrieving files using HTTP, HTTPS and FTP, the most widely-used internet protocols. To install wget in Anaconda run:

conda install -c anaconda wget 

If that doesn't work try:

conda install -c menpo wget 

Anaconda should have added jupyter to your PATH automatically during the installation if you selected that option. If you did not select it, you need to do this manually by following the steps in answers to Anaconda Packages .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM