I am trying to download files from a url.
I found wget command to be able to do that. Since I use Jupyter, I did not want to use pip, however conda install conda wget didn't work as there is no Windows wget in the default repository. Thus I did conda install menpo wget which successfully installed wget. However I still cannot import wget in JupyterLab:
ModuleNotFoundError: No module named 'wget'
- Are there any other steps to import
wget? - Is there a better way to download files in Jupyter?