在执行python模块。线
import humanfriendly
给出错误。如何解决这个问题?
在执行python模块。线
import humanfriendly
给出错误。如何解决这个问题?
您的描述不清楚,我不知道import humanfriendly
您所说的错误时发生了什么。所以我可以为你做的,只发布关于如何humanfriendly
在 Azure ML 中安装 Python 包的步骤,如下所示。
根据Technical Notes
文档“执行 Python 脚本”的部分,我从这里humanfriendly
下载包。我解压缩了包(文件或文件都相同),并将其目录打包为 zip 文件。.whl
.tar.gz
humanfriendly
然后我单击按钮+New
并选择DATASET
从本地文件上传新数据集的选项卡,如下图所示。
拖放数据集模块humanfriendly.zip
和Execute Python Script
模块以连接它们并编写 Python 代码,如下所示。
这是我在Execute Python Script
.
import humanfriendly
def azureml_main(dataframe1 = None, dataframe2 = None):
user_input = '16G'
num_bytes = humanfriendly.parse_size(user_input)
print num_bytes
最后,我成功地运行了实验。
humanfriendly
更新:我的zip的文件结构树。我解压了wheel文件,只是打包了humanfriendly
目录。
humanfriendly
├── data.csv
└── humanfriendly
├── cli.py
├── compat.py
├── __init__.py
├── prompts.py
├── sphinx.py
├── tables.py
├── terminal.py
├── tests.py
├── text.py
└── usage.py