Azure-ML>>ImportError: DLL load failed while importing win32file: The specified procedure could not be found.

Anonymous
2022-03-25T08:00:47.07+00:00

I have been using the Azure ML python SDK and it has been working fine until I started getting this error:
"ImportError: DLL load failed while importing win32file: The specified procedure could not be found." when I tried to access my workspace

I am using a conda virtual environment with Python 3.9 and I was running all my codes in a jupyter notebook on a windows computer.

It's been many hours now and I cannot find a solution. Can you help?

Azure Machine Learning
Azure Machine Learning
An Azure machine learning service for building and deploying models.
2,563 questions
{count} vote

1 answer

Sort by: Most helpful
  1. Michael Harrison 6 Reputation points
    2022-03-31T12:51:13.093+00:00

    I had the same issue, but the fix here seems to have solved it.

    Specifically:

    conda install pywin32
    
    1 person found this answer helpful.