tombulled / python-youtube-music

Python 3 YouTube Music Web API Client
GNU General Public License v3.0
64 stars 13 forks source link

Request: Make the package installable with pip #10

Closed nicolapreda closed 3 years ago

nicolapreda commented 3 years ago

Hi everyone, I'm trying to install this package in my HomeAssistant server with AppDaemon 4, but I need to install this with a "pip install" method, because the only method I have to install ytm package is this: image :')

there is no alternative method to pip install setup.py? Thanks

tombulled commented 3 years ago

Hi @diskxo,

You are actually able to install the package using pip:

$ python3 -m pip install git+https://github.com/tombulled/python-youtube-music

However, I assume you mean installing it directly from PyPi. As this package is no longer actively maintained (I have another revised one in the works though!), I have no intention of uploading this package to PyPi unfortunately.

The improved version I mentioned should hopefully be publicly available in a matter of weeks, with the intention to upload this version to PyPi.

nicolapreda commented 3 years ago

Thanks a lot :D