Hi Aditya,
Thanks for your reply. I have Python 3.6 installed on my windows PC, and I was trying to install dicompyler version 0.4.2. As you said 0.4.2 supports Python 2.7, so that must be the source of error.
I have downloaded the latest version form he link that you have provided. Now it gave the error ModuleNotFoundError: No module named 'pydicom'
In main.py I replaced import pydicom with import dicom which rectified the error. Are there other locations in the package where I need to make the change?
I got another error:
C:\Users\rashm\OneDrive\Desktop\dicompyler-master>python dicompyler_app.py
Traceback (most recent call last):
File "dicompyler_app.py", line 10, in <module>
import dicompyler.main
File "C:\Users\rashm\OneDrive\Desktop\dicompyler-master\dicompyler\__init__.py", line 16, in <module>
from dicompyler.main import start
File "C:\Users\rashm\OneDrive\Desktop\dicompyler-master\dicompyler\main.py", line 24, in <module>
from dicompylercore import dvhcalc
ModuleNotFoundError: No module named 'dicompylercore'
I tried installing using pip install dicomplyercore but it gives error :
C:\Users\rashm\OneDrive\Desktop\dicompyler-master>pip install dicompylercore
Collecting dicompylercore
Could not find a version that satisfies the requirement dicompylercore (from versions: )
No matching distribution found for dicompylercore
I have downloaded dicomplyer-core-0.5.3. Can you tell me how to install it, since pip install dicompyler does not work.
Thanks,
Rashmi