import renders 语句抛出 "No such module" 错误

import renders statement throws "No such module" error

我正在尝试 运行 在我的数据集上进行主成分分析。我看到了 Ritchie Ng 的教程:https://www.ritchieng.com/machine-learning-project-customer-segments/ 我正在尝试在我的数据集上重新创建它。但是,该博客使用了一个名为 "renders" 的包,我无法在 Anaconda 中找到它。我如何以及从哪里获得和启用这个包?我在 Anaconda 导航器和 google 中搜索过这个包,但我似乎找不到它。

这是教程中提供的 link 到 'renders':

https://github.com/ritchieng/machine-learning-nanodegree/tree/master/unsupervised_learning/customer_segments

确保目录中有模块文件。

Module: A module is a file containing Python definitions and statements. The file name is the module name with the suffix .py appended.

阅读更多:Python Tutorial - Modules