我正在尝试创建一个python包,然后我想在我的databricks集群上安装它。我尝试过不同的方法,但都以失败告终 ModuleNotFoundError
错误。我想用这个来创造它 data_aggregation
目录,该目录标记为 package
根据我的魅力。它嵌套在我的项目中,所以我想知道这是否是一个问题?
这是我的 setup.py
文件:
from setuptools import setup
setup(
name='dataaggpackage',
version='test',
packages=['data_aggregation'],
url='',
license='test',
author='czept',
author_email='test',
description='test'
)
但是,尝试使用它构建包(py-m build)会导致:
因此,我将我的安装文件更改为这个,假设它将以根目录的形式获取数据。
from setuptools import setup
setup(
name='dataaggpackage',
version='test',
packages=[''],
url='',
license='test',
author='czept',
author_email='test',
description='test'
)
它构建正确,我可以在databricks集群上安装它,但无法导入它。
暂无答案!
目前还没有任何答案,快来回答吧!