Created
April 22, 2023 01:56
-
-
Save kernelzeroday/9de944b05fb5c3efe3a3dd0b28357bfa to your computer and use it in GitHub Desktop.
fix xformers for linux ubuntu d8ahazard/sd_dreambooth_extension
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
errors: | |
ValueError: xformers is not available. Make sure it is installed correctly | |
# Dreambooth may not work properly. | |
xFormers wasn't build with CUDA support | |
fix: | |
``` | |
#do venv activate | |
export CC=gcc-9 | |
export CXX=g++-9 | |
pip install git+https://github.com/facebookresearch/[email protected] | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment