Missing required package "azureml-dataset-runtime", which can be installed by running: "/opt/az/bin/python3" -m pip install azureml-dataset-runtime --upgrade
Bump
same here --> bump
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.

pip install --user --upgrade pywin32. This fixed me the issue , I not sure why . Try this hope it helps
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
how to do this sync?