danielwelch / django-q-sentry

Bringing Sentry error tracking to Django Q
MIT License
8 stars 7 forks source link

Error when trying to install #1

Closed jordanmkoncz closed 3 years ago

jordanmkoncz commented 6 years ago

Hi there,

I'm trying to follow the Installation instructions in the README, but I'm getting an error. Below is the output from pip install django-q[sentry]

(venv) Jordans-15-MBP:my_project jordan$ pip install django-q[sentry]
Requirement already satisfied: django-q[sentry] in ./venv/lib/python3.5/site-packages
Requirement already satisfied: arrow in ./venv/lib/python3.5/site-packages (from django-q[sentry])
Requirement already satisfied: django-picklefield in ./venv/lib/python3.5/site-packages (from django-q[sentry])
Requirement already satisfied: blessed in ./venv/lib/python3.5/site-packages (from django-q[sentry])
Requirement already satisfied: django>=1.8 in ./venv/lib/python3.5/site-packages (from django-q[sentry])
Collecting django-q-sentry>=0.1; extra == "sentry" (from django-q[sentry])
  Could not find a version that satisfies the requirement django-q-sentry>=0.1; extra == "sentry" (from django-q[sentry]) (from versions: )
No matching distribution found for django-q-sentry>=0.1; extra == "sentry" (from django-q[sentry])

I actually can't seem to find django-q-sentry on https://pypi.python.org so I'm thinking the issue might be that the package hasn't been published to PyPI yet? Any suggestions?

jordanmkoncz commented 6 years ago

For anyone else who's having this problem, a workaround is to install django-q-sentry manually by adding the following to your requirements.txt.

git+https://github.com/danielwelch/django-q-sentry.git@c492988339491eaa3beb3cf33dbab6f3443ad6d3#egg=django_q_sentry
danielwelch commented 6 years ago

Terrible oversight by me, sorry. Just published to PyPI.

jordanmkoncz commented 6 years ago

No worries, thanks for your great work on adding Sentry integration for django-q @danielwelch.

It looks like there's another minor problem with the integration, I created an issue for it here: https://github.com/Koed00/django-q/issues/276. Could you please take a look? :)