问题
I am trying to use pdf rendering package Poppler and I found an Anaconda Installation for the same here
https://anaconda.org/conda-forge/poppler
I can see the Poppler package installed in my conda env when I do
conda <env> list
However when I try to import the package in my code by doing
import poppler
I get :
ModuleNotFoundError: No module named 'poppler'
How do I find if this is the right name of the module if its not the name shown in then conda env list.. I believe the package name is the module name with its own classes and methods.
Why is it saying No module?
来源:https://stackoverflow.com/questions/61488601/unable-to-import-poppler-even-after-installing-in-conda