anime-dl / anime-downloader

A simple but powerful anime downloader and streamer.
The Unlicense
1.92k stars 218 forks source link

WinError 2 #727

Closed UltraJew closed 2 years ago

UltraJew commented 2 years ago

Describe the bug

To reproduce

Could someone tell me where anime-dl installs to when using choco on windows and specifically how I can add mpv to path to fix this?

ArjixWasTaken commented 2 years ago

choco doesnt install anime dl choco installs python

and using python's pip we install anime dl

so uhh, you can run

import anime_downloader
print(anime_downloader.__file__)

to get the folder where the code is stored at

as for how to add smth to the PATH, look at https://helpdeskgeek.com/windows-10/add-windows-path-environment-variable/ just add the folder where mpv.exe is in at the PATH

UltraJew commented 2 years ago

thanks