Posts

Showing posts with the label SDXL

Setting up VEnv’s for a legacy Python required by SDXL WebUI

Discussing setting up virtual environments (venv) for a legacy Python version required by SDXL WebUI on an Artix Linux system. To set up virtual environments for a legacy Python version, you can follow these general steps: 1. **Install the Required Python Version**:    First, make sure you have the specific Python version that SDXL WebUI requires. You may need to download and install it from a reliable source, especially if it's a version different from the default Python on your system. 2. **Install Python's `venv` Module**:    To create virtual environments, you'll need to install Python's `venv` module, which is included in Python 3.3 and later. You can install it on your system if it's not already available.    ```bash    sudo apt-get install python3-venv  # On Debian/Ubuntu    ```    ```bash    sudo yum install python3-venv  # On CentOS/RHEL    ``` 3. **Create a Virtual Environment**:    Create a virtual environment for the legacy Python version using the `venv