pyenv is a tool to manage different versions of python installation. This post summarize the steps that I take in order to install pyenv tool. You can also reference the steps in the pyenv installer as below: https://github.com/pyenv/pyenv-installer However, the… Read More
setup robot framework environment
Robot Framework is widely used in our company to do webapp automation testing. This post lists the required steps to setup the environment for the robot framework. 1. Install pyenv pyenv is an excellent tool to switch python between multiple… Read More
pypi mirror from aliyun
When I use ‘pip install xxx’ command to install a python package, the pip command will download the package from https://pypi.org/simple and then install it. However, downloading packages from the URL https://pypi.org/simple is relatively slow from China. I recommend to use… Read More