简体   繁体   中英

Anaconda and package installation (pydicom)

I have the following problem. I have tried to install the pydicom package in python 2.7 using the following command (windows, anaconda setup):

conda install -c conda-forge pydicom

everything seems to work fine, the package seems to be installed. I type

conda list

and in the list I see

pydicom                   0.9.8                     <pip>

I open spyder, or pycharm, type

import pydicom

and I get

ImportError: No module named pydicom

I have no idea what am I doing wrong. I went through http://conda.pydata.org/docs/using/pkgs.html and everything seems to be fine.

Please assist.

Since you are using 0.9.8 , you actually need import dicom rather than import pydicom .

Due to this confusion, it will be import pydicom in version 1.0.0 and later.

I suggest you either update Python Version > 3.0, so that the output for conda list shows something like this:

(pip install pydicom)

pydicom                   1.0.2                     <pip>
python                    3.6.4                h6538335_1

Now import using:

import pydicom #Preferable 

==========================================================

Or install dicom instead of pydicom using:

(pip install pydicom-0.9.8)

pydicom                   0.9.8                    <pip>
python                    2.7.0                h6538335_1

And then, import using:

import dicom

However, I strongly suggest that you install pydicom instead of dicom, since it is the upgraded version.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM