当前位置: 首页 > 工具软件 > ExcelLibrary > 使用案例 >

Robot Framework 安装ExcelLibrary一直报错,提示“dist.py:267: userwarning: unknown distribution option: ‘inst’”

司空俊悟
2023-12-01

You need to be using setuptools instead of distutils.

Near the top of your script, try replacing

from distutils.core import setup

with

from setuptools import setup

stackflow上的答案是将excellibrary的setup.py 中 "from distutils.core import setup"替换为“from setuptools import setup”即可。


 类似资料: