Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Azure by (5.8k points)

In Azure ML, I'm trying to execute a Python module that needs to import the module pyxdameraulevenshtein (https://pypi.python.org/pypi/pyxDamerauLevenshtein).

I followed the usual way, which is to create a zip file and then import it; however, for this specific module, it seems to never be able to find it. The error message is as usual:

ImportError: No module named 'pyxdameraulevenshtein'

Has anyone included this pyxdameraulevenshtein module in Azure ML with success ?

(I took the package from https://pypi.python.org/pypi/pyxDamerauLevenshtein.)

Thanks for any help you can provide,

1 Answer

0 votes
by (9.6k points)

1. Download wheel and all the dependencies of the module.

2. Decompress it and make a zip file.

3. Upload it to AML studio and write a python script in Execute Python script to install the module

4. Run the module 

Browse Categories

...