Installation

With Pip

You can install Yuio from Pip as usual:

$ pip install yuio

Using Wheels

Sometimes you need to run code in an environment that doesn’t have pip. In this case, you can use a wheel file:

  1. Download a .whl file from PyPi.

  2. Add downloaded file to sys.path and import Yuio as usual:

    import sys
    sys.path.insert(0, "yuio-2.0.0-py3-none-any.whl")
    
    import yuio
    
    ...