ERROR No matching distribution found for pywin32
I'm getting build error
ERROR No matching distribution found for pywin32
however I can see the module is clearly available here: https://pypi.org/project/pywin32/#history
What am I missing? I did try install by pointed directly to certain versions (pywin32==305
) without luck.4 Replies
Project ID:
a498a38d-3f33-4742-a7e3-77c797ee9333
a498a38d-3f33-4742-a7e3-77c797ee9333
pywin32 is a windows only module, it's not necessary on linux (the OS that the containers on railway run on), so you can just delete it
in most cases anything that has
win
in it you can just delete from your requirements.txt fileThanks!