如何在数据砖上运行python3?

问题描述 投票:1回答:1

我尝试在databricks(社区版本)上运行我的机器学习代码,并且需要使用Orange3数据挖掘库。但是,当我尝试创建orange3库时,它给出了如下错误:

Error: java.lang.RuntimeException: Installation failed with message: Collecting orange3 Downloading Orange3-3.8.0.tar.gz (34.0MB) Complete output from command python setup.py egg_info: Orange requires Python >= 3.4 ---------------------------------------- mesg: ttyname failed: Inappropriate ioctl for device Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-DnpIcU/orange3/

我想这意味着我需要python3才能安装该库,但是databricks的默认版本是python2。我不知道如何将其更改为python3。

我也在databricks论坛上进行了搜索,并找到了该帖子(https://docs.databricks.com/api/latest/examples.html#create-a-python-3-cluster)。

但是,我仍然不太了解如何创建python3-cluster。这是否意味着我需要使用集群API来定制集群,而集群需要收取额外的费用?

感谢任何帮助!

python databricks
1个回答
3
投票

Python 3现在是创建集群时的默认设置,并且在较旧的运行时中,有一个UI下拉列表可在2或3之间切换。 Databricks Runtime 6+将不再支持2。

docs提供有关各种Python设置的更多详细信息。

关于特定版本,取决于您使用的运行时。

例如:

  • 5.5 LTS运行Python 3.5
  • 5.5 LTS ML运行Python 3.6
  • 带有Conda的5.5运行Python 3.7
  • 6.0和6.1都运行3.7
© www.soinside.com 2019 - 2024. All rights reserved.