惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
GbyAI
GbyAI
Y
Y Combinator Blog
The GitHub Blog
The GitHub Blog
B
Blog
博客园 - 叶小钗
V
Visual Studio Blog
小众软件
小众软件
阮一峰的网络日志
阮一峰的网络日志
博客园 - 聂微东
S
SegmentFault 最新的问题
Engineering at Meta
Engineering at Meta
博客园 - Franky
V
V2EX
人人都是产品经理
人人都是产品经理
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
IT之家
IT之家
T
The Blog of Author Tim Ferriss
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
C
Check Point Blog
N
Netflix TechBlog - Medium
博客园 - 【当耐特】

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
AI ON ARDEON 780M!?
Hizar Arain · 2026-06-28 · via DEV Community

Hizar Arain

Hello guys to my first guide on how to install ai libaries on a radeon 780m (this guide is also for other gfx110X gpus)

REQUIREMENTS
a gfx110X combabtible gpu

16GB is mandatory or above for bigger model i know ram is very pricey

Fedora or any distros but i prefer fedora or use windows(NO TRITON OR JAX SUPPORT)

Python (preferably a newer version) python only for windows

Good internet I MEAN IT the packages are so big because they include all of rocm

ALSO GO IN YOUR BIOS AND SET THE UMA BUFFER TO HALF YOUR RAM

ON WINDOWS PLEASE USE CMD

Hip sdk if on windows HIP SDK

Time i also mean it

basic terminal knowledge and python knowledge

GUIDE

ok first things first the commands are gonna be split one for windows one for linux indicated by "w" for windows and "l" for linux

"l"

lspci | grep -i "VGA\|Display\|Radeon"

it should return something like HawkPoint1 or similair for radeon 780m

"l"

ls /dev/dri/

should say card1 renderD128 or similair

"l"

groups | grep -E "render|video"

should return render and video if not do sudo

usermod -aG render,video $USER

LOG OUT AND LOG IN AGAIN

ok now for the venv
_**

CRUCIAL: On Linux, never install these ROCm wheels globally. By using a venv, we create a sandboxed environment where the 'heavy' ROCm libraries live peacefully without conflicting with your system's desktop drivers.

**_

create the venv

"l"

python3 -m venv venv

"w"

python -m venv venv

activate it

"l"

source venv/bin/activate

"w"

.\venv\Scripts\activate

yay we got the venv if you got here GOOD JOB

NOW for the giant package installation

NOTE PLEASE HAVE MORE THAN 5 GB OF FREE SPACE AND IF IT LOOOKS FROZEN JUST WAIT

"l"

python3 -m pip install apex filelock fsspec jax-rocm7-pjrt jax-rocm7-plugin jaxlib jinja2 markupsafe mpmath networkx numpy pillow rocm rocm-profiler rocm-sdk-core rocm-sdk-devel rocm-sdk-libraries-gfx110x-all setuptools sympy torch torchaudio torchvision triton typing-extensions --index-url https://rocm.nightlies.amd.com/v2/gfx110X-all/ --resume-retries 0

"w"

python -m pip install filelock fsspec jinja2 markupsafe mpmath networkx numpy pillow setuptools sympy torch torchaudio torchvision typing-extensions rocm-sdk-libraries-gfx110x-all --index-url https://rocm.nightlies.amd.com/v2/gfx110X-all/ --resume-retries 0

YAY IF those finished you did the longest step i wnat to just remind here DONT USE THE LINUX COMMANDS ON WINDOWS because windows doesnt have triton or flax support

NOW YOU HAVE SUCESSFULY INSTALLED ALL THE AI PACKAGE IF YOU WNAT TO WRITE YOUR OWN CODE HERE IS THE END OF LINE BUT IF YOU WNATA WRAPPER LIKE comfyui than read further

COMFYUI yay

"l" and "w"

clone the repo

git clone https://github.com/comfyanonymous/ComfyUI.git

enter comfyui

cd ComfyUI

now install the rest requirements this will take a while also

python -m pip install -r requirements.txt

_HOW TO LAUNCH*_*

ok this time splits again "l" for linux and "w" for windows (USE --lowvram if you have 8gb or under 8gb uma bffer or vga if you have above it rmeove the --lowvram)

"l"

python3 main.py --lowvram

"w"

python main.py --lowvram

IF YOU LIKED THIS THAN LET ME KNOW IT YAYYY