From the course: Robot Framework Test Automation: Level 2

Unlock this course with a free trial

Join today to access over 22,600 courses taught by industry experts.

Examine library versions

Examine library versions

- [Instructor] Now we're going to use pip list to make note of the current library versions that we have installed. So I've got my command, I type in pip list, and hit return, and notice it's actually showing me that we're using pip version 8.1.1, but 8.1.2 is available. So apparently the installation of Python doesn't even have the latest version of pip. So as you can see that what we can do is we can run python -m pip install --upgrade pip and hit return. And now we've got the latest version of pip. So we'll do pip list again, and now you see we're not getting that upgrade alert anymore. And I can scroll through and look at the various packages that are installed. You can see robotframework itself is 2.8.7, robotframework-selenium2library is 1.6.0. So what I would do is I would write down these various version numbers here, in case something goes wrong during my upgrades, so I can remove any of those libraries and come back and specifically reinstall these versions that were working…

Contents