Ошибка ImportEr на "перо импорта" в Python - PullRequest
1 голос
/ 09 октября 2019

Я пытаюсь установить перья в моей среде, но она продолжает зависать при "импортировании перьев". сообщение об ошибке:

---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
<ipython-input-6-1d29cbb85491> in <module>
----> 1 import feather

~\Anaconda3\lib\site-packages\feather\__init__.py in <module>
     15 # flake8: noqa
     16 
---> 17 from feather.api import (read_dataframe, write_dataframe,
     18                          FeatherError, FeatherReader, FeatherWriter)
     19 from feather.version import version as __version__

~\Anaconda3\lib\site-packages\feather\api.py in <module>
     13 # limitations under the License.
     14 
---> 15 from pyarrow.feather import (read_feather as read_dataframe,  # noqa
     16                              write_feather as write_dataframe,
     17                              FeatherError,

~\Anaconda3\lib\site-packages\pyarrow\__init__.py in <module>
     52 
     53 
---> 54 from pyarrow.lib import cpu_count, set_cpu_count
     55 from pyarrow.lib import (null, bool_,
     56                          int8, int16, int32, int64,

ImportError: DLL load failed: The specified procedure could not be found.

любая помощь в решении этой проблемы. В подсказке Anaconda я использовал

conda install -c conda-forge feather-format
...