Reputation: 19
I have tried to install robotframework-datadriver
via the command below:
pip install robotframework-datadriver
but I got error
python setup.py egg_info" failed with error code 1
Upvotes: 0
Views: 266
Reputation: 1709
Try to upgrade setuptools
by this command
pip install --upgrade setuptools
and try to install robotframework-datadriver again.
If you already have Python >= 3.6 with pip installed, you can simply run:
pip install --upgrade robotframework-datadriver
Upvotes: 1