Fariya
Fariya

Reputation: 19

install robotframework-datadriver 0.3.3 but get the following error: "python setup.py egg_info" failed with error code 1

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

Answers (1)

Sidara KEO
Sidara KEO

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

Related Questions