I am currently working on a project which requires me to convert RAW
images to JPEG
, it seems the rawpy
package (link) is the best option available to me but if you know any better ways to automate the conversion then let me know.
I installed rawpy
package in cmd with
py -m pip install rawpy
and it said the requirement was already satisfied, but when I try to import it in python it says:
ModuleNotFoundError: No module named 'rawpy'
How do I install this I am not too experienced in python btw.