Guest User

Manual FramePack Webui Install

a guest
Apr 19th, 2025
11,273
2
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 2 0
  1. Manual Install Method from my last Youtube Video: https://youtu.be/GywyMij88rY
  2.  
  3. 1. Download and extract the FramePack portable version from:
  4. https://github.com/lllyasviel/FramePack
  5.  
  6. 2. After extraction, you need to determine your cuda version (you should have already installed the 12.6 from here: https://developer.nvidia.com/cuda-12-6-0-download-archive or 12.8).
  7.  
  8. in a cmd window use the command:
  9.  
  10. nvcc --version
  11.  
  12. 3. Once you have the cuda version, go to https://github.com/woct0rdho/SageAttention/releases
  13. and dl the corresponding file (python 3.10 version)
  14.  
  15. 4. Go to https://github.com/woct0rdho/triton-windows/releases/v3.0.0-windows.post1/
  16. and dl the python_3.10.11_include_libs.zip archive.
  17.  
  18. 5. Put the two files inside the framepack_cu126_torch26\system\python folder and extract the content of the python_3.10.11_include_libs.zip archive inside the folder
  19.  
  20. 6. Click on the folder path and use the commands:
  21. python.exe -s -m pip install triton-windows ---> for installing triton
  22. python.exe -s -m pip install sageattention-2.1.1+cu128torch2.7.0-cp310-cp310-win_amd64.whl ---> replace sageattention-2.1.1+cu128torch2.7.0-cp310-cp310-win_amd64.whl by the name of the file you have dl for your cuda version
  23.  
  24. 7. Go back to the framepack_cu126_torch26 folder and run first the update.bat file to update it to the latest version and then launch the run.bat file.
  25.  
  26.  
  27.  
  28. ## RunPod Installation
  29.  
  30. 1. Create account at: https://bit.ly/runpodAi
  31. 2. Choose a 24GB VRAM GPU with the pytorch 2.1 template
  32. 3. Access port 8888
  33. 4. clone the repo
  34. git clone https://github.com/lllyasviel/FramePack
  35. go inside the FramePack folder
  36. cd FramePack
  37. 5. Create a python env
  38. python -m venv venv
  39. then activate it
  40. source venv/bin/activate
  41. 6. Install all the dependencies
  42. pip install --upgrade pip
  43. pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu126
  44. pip install -r requirements.txt
  45. pip install triton
  46. pip install sageattention==1.0.6
  47. 7. Then launch it with the --share argument
  48. python demo_gradio.py --share
Comments
  • SyntaxAI
    100 days
    Comment was deleted
  • Lancelote101
    84 days
    # text 0.15 KB | 0 0
    1. When trying to install triton, a message appears "is not an internal or external command, operable program or batch file" tell me how to solve the problem?
Add Comment
Please, Sign In to add comment