Installing a Python wheel

We'll cover the following...

Let’s create a virtualenv to test with. We will use the following command to create our virtual testing environment:

Press + to interact
virtualenv test

This assumes that virtualenv is on your system path. If you get an unrecognized command error, then you’ll probably have to specify the full path (i.e. ...

Ask