repo / a1111.py
ysb123's picture
Update a1111.py
cfbfbdd
raw
history blame
350 Bytes
import subprocess
repo_url = 'https://github.com/AUTOMATIC1111/stable-diffusion-webui'
dest_path = './Repo'
# Run the git clone command
try:
subprocess.run(['git', 'clone', repo_url, dest_path], check=True)
print('Clone operation completed successfully! ๐Ÿ˜„')
except subprocess.CalledProcessError:
print('Clone operation failed! ๐Ÿ˜ž')