-
Notifications
You must be signed in to change notification settings - Fork 155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing dependencies #108
Comments
What's the version number of python_jwt? |
@b4oshany what do you mean? which "the" version number? You can find all past released versions of |
If what you're asking is "which version should I put into Please see https://semver.org
Same goes for the other dependencies.
Roughly this, as a first sketch. Let me know if you want to see this as a PR. |
Hi!
While installing version 3.0.1 from PyPI, I've found that these packages need to be added to
requirements.txt
andinstall_requires=[...]
insetup.py
:python_jwt
gcloud
sseclient
requests_toolbelt
These are runtime dependencies of
python-firebase
and need to be installed together with it. Otherwise, the package installs "successfully" but doesn't work:As a workaround, hand-installing the dependencies helps. However, installing deps is a job of
pip
, not of the user. If you add the deps intosetup.py
, pip will install them together withpython-firebase
fixing the issue.The text was updated successfully, but these errors were encountered: