“numpy._DTypeMeta”对象在Azure数据块中不可订阅

iqih9akk  于 2023-10-19  发布在  其他
关注(0)|答案(1)|浏览(117)

我得到下面的错误,而进口卡米洛特包
TypeError:“numpy._DTypeMeta”对象不可订阅

!pip install PyPDF2
!pip install bs4
!pip install camelot-py[cv]
!pip install tabula-py

from urllib import request
import requests
import traceback
import re
import os
import urllib
import tabula
from tabula.io import read_pdf
from pathlib import Path
import numpy as np
import camelot

ycl3bljg

ycl3bljg1#

我找到了解决办法。
opencv-python的当前版本4.8.0.76不工作,请使用4.8.0.74。分别安装这两个包。
在您的工作簿中包括以下语句:

%pip install opencv-python==4.8.0.74
%pip install camelot-py
dbutils.library.restartPython()

相关问题