Skip to content

Instantly share code, notes, and snippets.

View hqnicolas's full-sized avatar
🎯
Data Analysis

Nicolas Pereira hqnicolas

🎯
Data Analysis
View GitHub Profile
@Spencer-Dawson
Spencer-Dawson / bitsandbytes-rocm-installer.sh
Last active March 16, 2024 22:09
experimental Installation script for bitsandbytes-rocm for oobabooga/text-generation-ui for ubuntu 22.04
#!/bin/bash
echo "This script is completely untested. "
echo "It's more intended as a general overview of what needs to be done to install bitsandbytes-rocm in the text-generation-ui env on Ubuntu 22.04"
echo "Run from the same directory as start-webui.sh"
# make sure user wants to continue
read -p "Do you want to continue? [y/N] " -n 1 -r
echo
if [[ ! $REPLY =~ ^[Yy]$ ]]; then