Reputation: 101
I am trying to install HttpLibrary
.HTTP Library for using JSON
assertion
keywords like JSON Value should equal
. However when I try to install Library using
pip install --upgrade robotframework-httplibrary
I get:
Could not find a version that satisfies the requirement robotframework-httplibrary (from versions:) No matching distribution found for robotframework-httplibrary. My pip version is 10.0.1.
Upvotes: 0
Views: 7094
Reputation: 2872
Run this command instead if that does not work upgrade php version
pip install robotframework-httplibrary
To upgrade pip
pip install --upgrade pip
alternatively if that does not work you can download the zip folder from here https://github.com/peritus/robotframework-httplibrary and then run the setup.py
This needs to be ran from the command prompt
C:\Python27\python.exe C:\Users\Username\Desktop\setup.py
Alternatively you could try to install it using powershell with the following command
PS> pip install --isolated robotframework-httplibrary
Upvotes: 1