-2

在执行python模块。线

import humanfriendly

给出错误。如何解决这个问题?

4

1 回答 1

3

您的描述不清楚,我不知道import humanfriendly您所说的错误时发生了什么。所以我可以为你做的,只发布关于如何humanfriendly在 Azure ML 中安装 Python 包的步骤,如下所示。

  1. 根据Technical Notes文档“执行 Python 脚本”的部分,我从这里humanfriendly下载包。我解压缩了包(文件或文件都相同),并将其目录打包为 zip 文件。.whl.tar.gzhumanfriendly

  2. 然后我单击按钮+New并选择DATASET从本地文件上传新数据集的选项卡,如下图所示。

    图 1. 单击按钮+New 在此处输入图像描述 图 2. 选择选项卡DATASET 在此处输入图像描述 图 3. 从本地文件上传新数据集 在此处输入图像描述

  3. 拖放数据集模块humanfriendly.zipExecute 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
于 2017-06-19T03:20:01.180 回答