我正在尝试创建一个用于 Databricks 的 Python wheel。我正在使用 VS Code 来生成 wheel。
我有以下 setup.py 文件:
import setuptools
with open("QuickStart.MD", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="newlib",
version="0.1.8",
author="name",
author_email="[email protected]",
description="framework",
long_description=long_description,
long_description_content_type="text/markdown",
url="",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=[
'pyodbc',
'jsonschema'
]
)
我的 README.md 文件如下所示:
# Example Package
This is a simple example package. You can use
[Github-flavored Markdown](https://guides.github.com/features/mastering-markdown/)
to write your content
当我运行python setup.py bdist_wheel时
我收到错误:
无效命令‘bdist_wheel’
有人能让我知道我错在哪里吗?
您缺少轮子包。
如果你已经得到这个,也许默认的 python 是其他的。尝试 python -v 并了解版本是什么。尝试使用