1

I'm trying to run django-dramatiq --watch, but it returns a RuntimeError: Watching for source changes is not supported on win32.

django-dramatiq version:

django-dramatiq version

dramatiq version:

dramatiq version

Both my Python installation and my system are 64 bits, so I don't understand the issue

Kieroth29
  • 64
  • 2
  • 7
  • 1
    Yeah, I tried [several searches](https://imgur.com/a/UnTMev2), including possible duplicates offered by SO. If they did help, I wouldn't post this question. – Kieroth29 Jun 01 '21 at 18:54
  • How about [this one](https://duckduckgo.com/?q=why+is+64+bit+system+called+win32)? – Karl Knechtel Jun 04 '21 at 21:56

1 Answers1

4

win32 is the generic name for the Windows API on both 32-bit and 64-bit systems. It's saying that operation is not available in Windows.

Tim Roberts
  • 48,973
  • 4
  • 21
  • 30