我试图从组织模块导入fpgrowth,但是在安装组织模块时它抛出了一个错误。我还尝试将org.apache.spark替换为pyspark,但仍然不起作用。
!pip install org
import org.apache.spark.ml.fpm.FPGrowth
错误如下:
ERROR: Could not find a version that satisfies the requirement org (from versions: none)
ERROR: No matching distribution found for org
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-12-c730562e7076> in <module>
1 get_ipython().system('pip install org')
----> 2 import org.apache.spark.ml.fpm.FPGrowth
ModuleNotFoundError: No module named 'org'
1条答案
按热度按时间rkttyhzu1#
导入
FPGrowth
在pyspark中,您需要写:您可以找到有关如何使用的附加说明
FPGrowth
在spark文档中。