Tried installing the Alpaca trading API and I got an error

0

I'm trying to mess around with the Alpaca trade API.  But when installing I received this error:

ERROR: requests 2.21.0 has requirement urllib3<1.25,>=1.21.1, but you'll have urllib3 1.25 which is incompatible.

Full screen containing error:
error received during install

Any advice on how to correct it? I've tried updating my urrlib but I can't find a version 1.25.1.

Ggd Hhdhd

Posted 2019-04-24T04:03:41.350

Reputation: 1

You say you’ve looked for a version 1.25.1, but the message (“requirement urllib3<1.25”) seems to be saying that you need something *lower.* – Scott – 2019-04-27T20:47:18.727

python -m pip install --upgrade 'urllib3<1.25,>=1.21.1' – hoefling – 2019-04-27T21:12:29.757

No answers