openaijourney.com
Open in
urlscan Pro
172.67.131.53
Public Scan
Submitted URL: http://openaijourney.com/how-to-update-automatic1111/
Effective URL: https://openaijourney.com/how-to-update-automatic1111/
Submission: On April 02 via api from US — Scanned from US
Effective URL: https://openaijourney.com/how-to-update-automatic1111/
Submission: On April 02 via api from US — Scanned from US
Form analysis
1 forms found in the DOMPOST https://openaijourney.com/wp-comments-post.php
<form action="https://openaijourney.com/wp-comments-post.php" method="post" id="commentform" class="comment-form" novalidate="">
<p class="comment-notes"><span id="email-notes">Your email address will not be published.</span> <span class="required-field-message">Required fields are marked <span class="required">*</span></span></p>
<p class="comment-form-comment comment-form-float-label"><textarea id="comment" name="comment" placeholder="Leave a comment..." cols="45" rows="8" maxlength="65525" aria-required="true" required="required"></textarea><label class="float-label"
for="comment">Comment <span class="required">*</span></label></p>
<div class="comment-input-wrap has-url-field">
<p class="comment-form-author"><input aria-label="Name" id="author" name="author" type="text" placeholder="John Doe" value="" size="30" maxlength="245" aria-required="true" required="required"><label class="float-label" for="author">Name <span
class="required">*</span></label></p>
<p class="comment-form-email"><input aria-label="Email" id="email" name="email" type="email" placeholder="john@example.com" value="" size="30" maxlength="100" aria-describedby="email-notes" aria-required="true" required="required"><label
class="float-label" for="email">Email <span class="required">*</span></label></p>
<p class="comment-form-url"><input aria-label="Website" id="url" name="url" type="url" placeholder="https://www.example.com" value="" size="30" maxlength="200"><label class="float-label" for="url">Website</label></p>
</div>
<p class="comment-form-cookies-consent"><input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes"> <label for="wp-comment-cookies-consent">Save my name, email, and website in this browser for the next time
I comment.</label></p>
<p class="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="Post Comment"> <input type="hidden" name="comment_post_ID" value="829" id="comment_post_ID">
<input type="hidden" name="comment_parent" id="comment_parent" value="0">
</p>
<p style="display: none;"><input type="hidden" id="akismet_comment_nonce" name="akismet_comment_nonce" value="5e5baa2cba"></p>
<p style="display: none !important;" class="akismet-fields-container" data-prefix="ak_"><label>Δ<textarea name="ak_hp_textarea" cols="45" rows="8" maxlength="100"></textarea></label><input type="hidden" id="ak_js_1" name="ak_js"
value="1712095036043">
<script>
document.getElementById("ak_js_1").setAttribute("value", (new Date()).getTime());
</script>
</p>
</form>
Text Content
Skip to content * Guides * Models * Prompts * Reviews * About Us Prompt Organizer Toggle Menu Guides | Stable Diffusion HOW TO UPDATE AUTOMATIC1111 FOR STABLE DIFFUSION ByAhfaz Ahmed Last Updated:February 8, 2024 Want to update Automatic1111 to the latest version? You’ve landed on the right page. When it comes to updating Automatic1111, I’ve read far too many stories of botched updates or people messing up something. If you’re someone who is not well-versed in Python, Git, and using command prompts, you don’t have to beat yourself up for messing up an update. And today, I’m here to fix all your problems by detailing step-by-step how to update Automatic1111 to the latest version. I’ll be sharing multiple approaches you can follow to update Automatic1111 and they’re all pretty straightforward. So, without any further ado, let’s dive in. Table of Contents Toggle * How To Update Automatic1111 * Updating Automatic1111 On Windows * Updating Automatic1111 On Mac * Using StabilityMatrix * Conclusion HOW TO UPDATE AUTOMATIC1111 Whether you’re using Windows or Mac, I’ll be covering how you can update Automatic1111 to the latest version. Let’s start with Windows first. UPDATING AUTOMATIC1111 ON WINDOWS On Windows, you can update Automatic1111 either automatically or manually. Let’s see how you can do that: AUTO-UPDATE AUTOMATIC1111 By setting up auto-updating for Automatic1111, you’ll never have to worry about updates anymore. With this approach, every time you open Automatic1111, it’ll check for updates and download the update if there’s a new version available. So, how do you do it? Head over to your Automatic1111 installation folder and right-click on the webui-user.bat file. Click on Edit and choose any text editing software such as Notepad. In this file, add the following between “set” and “call”: set COMMANDLINE_ARGS= --medvram --autolaunch git pull call webui.batCopy So, here’s how the contents of this file should look like after adding the above lines: @echo off set PYTHON=C:\Users\Ahfaz\AppData\Local\Programs\Python\Python310\python.exe set GIT= set VENV_DIR= set COMMANDLINE_ARGS=--medvram --xformers git pull call webui.batCopy By adding “git pull” to this file, Automatic1111 will always check for updates whenever you launch it. And if you’re curious, update checks only take a few seconds so you’ll not be slowing down the startup time of Automatic1111 by doing this. MANUAL UPDATE AUTOMATIC1111 To manually update Automatic1111, go to your Automatic1111 installation directory and right-click on stable-diffusion-webui folder. Click on the Git Bash Here option and it’ll open a command terminal where you’ll have to enter the following command: git pull Copy Press enter and it’ll start updating Automatic1111 and your WebUI will be updated to the latest version. This method is very quick and easy as well and if you don’t want to automatically update Automatic1111, then you should do this instead. UPDATING AUTOMATIC1111 ON MAC To update Automatic1111 on Mac, go to your Automatic1111 installation directory and right-click on the stable-diffusion-webui folder. Click on the New Terminal at Folder option and enter the following command: git pull Copy This will begin updating Automatic1111. USING STABILITYMATRIX If you’ve read my guide to Automatic1111, you must’ve noticed that I recommend using StabilityMatrix for installing Stable Diffusion. That’s because this is a one-click installer for Stable Diffusion WebUI’s such as Automatic1111 or ComfyUI and makes the entire process very easy. So, if you’ve used StabilityMatrix to install Automatic1111, you can also update it to the latest version using this software. Open StabilityMatrix and go to the Packages menu. Here, click on the three dots on the Stable Diffusion WebUI and click on Check for Updates. If there’s a new update available, it’ll prompt you to download and update Automatic1111. CONCLUSION Automatic1111 is frequently updated and there’s new features coming every now and then. It’s always a good habit to make sure you’re using the latest version of Automatic1111. With this guide, we covered the different methods you can use to update Automatic1111. I hope this guide helps you safely update your Automatic1111 to the latest version. If you have any questions regarding Automatic1111 or are facing any issues during updating, let me know in the comments below. Ahfaz Ahmed Ahfaz Ahmed is an AI enthusiast and a Stable Diffusion expert who is on a journey to share his knowledge to help people become an AI artist. Twitter POST NAVIGATION Previous Previous How To Enable Dark Mode In Stable Diffusion [Automatic1111] NextContinue Automatic1111: A Comprehensive Guide For Beginners LEAVE A REPLY CANCEL REPLY Your email address will not be published. Required fields are marked * Comment * Name * Email * Website Save my name, email, and website in this browser for the next time I comment. Δ This site uses Akismet to reduce spam. Learn how your comment data is processed. MEET THE AUTHOR Ahfaz Ahmed is the face behind OpenAI Journey and is a designer and artist with over 8 years in the industry. He is on a journey to share his knowledge and expertise about AI art on this blog by sharing helpful guides, reviews, and tutorials. * Twitter * Instagram * Facebook * LinkedIn * Link RECENT POSTS * Stable Diffusion 3: What’s New & How To Download It * Best Stable Diffusion Camera Prompts With Examples & Guide * Fooocus Guide: Stable Diffusion For Beginners * A Huge List of Stable Diffusion Negative Prompts * 7 Best Stable Diffusion Male Models (Compared) OpenAI Journey is an educational blog with the goal of helping you become an AI artist and learn how to create beautiful and mesmerizing AI art. PAGES * About Us * Contact * Sitemap * Privacy Policy * Terms & Conditions BROWSE * Guides * Models * Prompts * Reviews * About Us © 2024 OpenAI Journey Scroll to top Scroll to top * Guides * Models * Prompts * Reviews * About Us