MLOps icon indicating copy to clipboard operation
MLOps copied to clipboard

Missing required package "azureml-dataset-runtime", which can be installed by running: "/opt/az/bin/python3" -m pip install azureml-dataset-runtime --upgrade

Open gousiya573-snp opened this issue 4 years ago • 6 comments

az-ml

gousiya573-snp avatar Mar 17 '21 09:03 gousiya573-snp

Bump

j4k0bk avatar Apr 20 '21 13:04 j4k0bk

same here --> bump

Patrice52 avatar May 18 '21 17:05 Patrice52

Same here . The azureml-dataset-runtime package is fine, but still throws error when using Dataset.Tabular.from_delimited_files(path=csv_path). Screenshot attached.

image

nitish20899 avatar Jan 15 '22 00:01 nitish20899

pip install --user --upgrade pywin32. This fixed me the issue , I not sure why . Try this hope it helps

nitish20899 avatar Jan 16 '22 13:01 nitish20899

in my case I was running the command with python3, which was a version outside of my conda environment that didn't have dataprep installed.

Make sure your pip/python are synced up and that the pip you are using has dataprep installed.

python3 -c "import sys; print(sys.executable)"
python3 -m pip --version

python -c "import sys; print(sys.executable)"
python -m pip --version

derekehyatt avatar Mar 17 '22 16:03 derekehyatt

how to do this sync?

levalencia avatar Aug 12 '22 08:08 levalencia