jieba库安装错误

问题遇到的现象和发生背景

想咨询下,jieba库的安装问题

问题相关代码,请勿粘贴截图

运行代码:

import docx
document=docx.Document("test.docx")
content="".join([para.text for para in document.paragraphs])
len(content)
import pyjieba

运行结果及报错内容
C:\Users\Administrator\Desktop\test\Scripts\python.exe C:/Users/Administrator/Desktop/test/yuyue.py
Traceback (most recent call last):
  File "C:\Users\Administrator\Desktop\test\yuyue.py", line 5, in <module>
    import pyjieba
  File "C:\Users\Administrator\Desktop\test\lib\site-packages\pyjieba\__init__.py", line 28, in <module>
    _jiebadll = _cdll.LoadLibrary(_PWD + '/libs/' + _LIBRARY_NAME)
  File "E:\Python-3.9.7\lib\ctypes\__init__.py", line 452, in LoadLibrary
    return self._dlltype(name)
  File "E:\Python-3.9.7\lib\ctypes\__init__.py", line 374, in __init__
    self._handle = _dlopen(self._name, mode)
FileNotFoundError: Could not find module 'C:\Users\Administrator\Desktop\test\lib\site-packages\pyjieba\libs\cppjieba_API_win64.dll' (or one of its dependencies). Try using the full path with constructor syntax.


我的解答思路和尝试过的方法 ,分析应该是jieba库未安装,后安装完毕,一直错误

img

我想要达到的结果:先把jieba库安装上,后执行代码成功

直接下jieba的动态库调用吧

这个库安装还是相对比较简单的