WelcomeUser Guide
ToSPrivacyCanary
DonateBugsLicense

©2026 Poal.co

1.1K

I'm using linux mint without problems except the yt-dlp app in the package manager repository is old and doesn't work when I use it. The yt-dlp devs said I need a newer version and to install it myself, except I can't find a straight answer as to how to do that.

I tried using pip and tried apt but neither works because the path is all wrong.

The linux mint forum website is a nightmare for newbs.

Thanks

I'm using linux mint without problems except the yt-dlp app in the package manager repository is old and doesn't work when I use it. The yt-dlp devs said I need a newer version and to install it myself, except I can't find a straight answer as to how to do that. I tried using pip and tried apt but neither works because the path is all wrong. The linux mint forum website is a nightmare for newbs. Thanks

(post is archived)

[–] 1 pt (edited )

A .deb package is just an archive with smarts. Extract into a temp dir. You'll get a control and data folder.

Unpack each into their own temp dirs.

In the data folder you find all the files that would be installed under the paths specified by the packager. All paths relative to /. You can manually copy them where they go or change as you see fit.

Study the scripts extracted in the control folder. These are maintainer scripts that specify what actions are performed 1) pre-install, 2) post- install, 3) pre-upgrade, and/or 4) post-remove. They usually set ownerships, permissions, or init directories.

Manually do 1 & 2 adjusted for whatever changes you manually make to the recommended install pathing.

Not rocket appliances, just some manual work, but the scripts are your guide.