forked from extern/easydiffusion
Compare commits
12 Commits
v2.5.46.be
...
v2.5.41a
Author | SHA1 | Date | |
---|---|---|---|
324226f87d | |||
3120b593c6 | |||
d98e4772ac | |||
cf87c34bef | |||
656acafed3 | |||
5bc0d1f762 | |||
07e30ae4ad | |||
8ced5b7199 | |||
a2856b2b77 | |||
3045f5211f | |||
41ecc822df | |||
ce2a42ca13 |
@ -5,10 +5,10 @@ If you haven't downloaded Stable Diffusion UI yet, please download from https://
|
|||||||
After downloading, to install please follow these instructions:
|
After downloading, to install please follow these instructions:
|
||||||
|
|
||||||
For Windows:
|
For Windows:
|
||||||
- Please double-click the "Start Stable Diffusion UI.cmd" file inside the "stable-diffusion-ui" folder.
|
- Please double-click the "Easy-Diffusion-Windows.exe" file and follow the instructions.
|
||||||
|
|
||||||
For Linux:
|
For Linux:
|
||||||
- Please open a terminal, and go to the "stable-diffusion-ui" directory. Then run ./start.sh
|
- Please open a terminal, unzip the Easy-Diffusion-Linux.zip file and go to the "easy-diffusion" directory. Then run ./start.sh
|
||||||
|
|
||||||
That file will automatically install everything. After that it will start the Stable Diffusion interface in a web browser.
|
That file will automatically install everything. After that it will start the Stable Diffusion interface in a web browser.
|
||||||
|
|
||||||
@ -21,4 +21,4 @@ If you have any problems, please:
|
|||||||
3. Or, file an issue at https://github.com/cmdr2/stable-diffusion-ui/issues
|
3. Or, file an issue at https://github.com/cmdr2/stable-diffusion-ui/issues
|
||||||
|
|
||||||
Thanks
|
Thanks
|
||||||
cmdr2 (and contributors to the project)
|
cmdr2 (and contributors to the project)
|
||||||
|
@ -23,6 +23,7 @@ Click the download button for your operating system:
|
|||||||
- Minimum 8 GB of system RAM.
|
- Minimum 8 GB of system RAM.
|
||||||
- Atleast 25 GB of space on the hard disk.
|
- Atleast 25 GB of space on the hard disk.
|
||||||
|
|
||||||
|
|
||||||
The installer will take care of whatever is needed. If you face any problems, you can join the friendly [Discord community](https://discord.com/invite/u9yhsFmEkB) and ask for assistance.
|
The installer will take care of whatever is needed. If you face any problems, you can join the friendly [Discord community](https://discord.com/invite/u9yhsFmEkB) and ask for assistance.
|
||||||
|
|
||||||
## On Windows:
|
## On Windows:
|
||||||
|
@ -4,7 +4,7 @@ import sys
|
|||||||
|
|
||||||
# The config file is in the same directory as this script
|
# The config file is in the same directory as this script
|
||||||
config_directory = os.path.dirname(__file__)
|
config_directory = os.path.dirname(__file__)
|
||||||
config_yaml = os.path.join(config_directory, "config.yaml")
|
# config_yaml = os.path.join(config_directory, "config.yaml")
|
||||||
config_json = os.path.join(config_directory, "config.json")
|
config_json = os.path.join(config_directory, "config.json")
|
||||||
|
|
||||||
parser = argparse.ArgumentParser(description='Get values from config file')
|
parser = argparse.ArgumentParser(description='Get values from config file')
|
||||||
@ -16,15 +16,16 @@ parser.add_argument('key', metavar='key', nargs='+',
|
|||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
|
||||||
if os.path.isfile(config_yaml):
|
# if os.path.isfile(config_yaml):
|
||||||
import yaml
|
# import yaml
|
||||||
with open(config_yaml, 'r') as configfile:
|
# with open(config_yaml, 'r') as configfile:
|
||||||
try:
|
# try:
|
||||||
config = yaml.safe_load(configfile)
|
# config = yaml.safe_load(configfile)
|
||||||
except Exception as e:
|
# except Exception as e:
|
||||||
print(e, file=sys.stderr)
|
# print(e, file=sys.stderr)
|
||||||
config = {}
|
# config = {}
|
||||||
elif os.path.isfile(config_json):
|
# el
|
||||||
|
if os.path.isfile(config_json):
|
||||||
import json
|
import json
|
||||||
with open(config_json, 'r') as configfile:
|
with open(config_json, 'r') as configfile:
|
||||||
try:
|
try:
|
||||||
|
@ -100,7 +100,28 @@ def init():
|
|||||||
def getConfig(default_val=APP_CONFIG_DEFAULTS):
|
def getConfig(default_val=APP_CONFIG_DEFAULTS):
|
||||||
try:
|
try:
|
||||||
config_json_path = os.path.join(CONFIG_DIR, "config.json")
|
config_json_path = os.path.join(CONFIG_DIR, "config.json")
|
||||||
if not os.path.exists(config_json_path):
|
|
||||||
|
# compatibility with upcoming yaml changes, switching from beta to main
|
||||||
|
config_yaml_path = os.path.join(CONFIG_DIR, "..", "config.yaml")
|
||||||
|
|
||||||
|
# migrate the old config yaml location
|
||||||
|
config_legacy_yaml = os.path.join(CONFIG_DIR, "config.yaml")
|
||||||
|
if os.path.isfile(config_legacy_yaml):
|
||||||
|
shutil.move(config_legacy_yaml, config_yaml_path)
|
||||||
|
|
||||||
|
if os.path.exists(config_yaml_path):
|
||||||
|
try:
|
||||||
|
import yaml
|
||||||
|
|
||||||
|
with open(config_yaml_path, "r", encoding="utf-8") as f:
|
||||||
|
config = yaml.safe_load(f)
|
||||||
|
|
||||||
|
setConfig(config) # save to config.json
|
||||||
|
os.remove(config_yaml_path) # delete the yaml file
|
||||||
|
except:
|
||||||
|
log.warn(traceback.format_exc())
|
||||||
|
config = default_val
|
||||||
|
elif not os.path.exists(config_json_path):
|
||||||
config = default_val
|
config = default_val
|
||||||
else:
|
else:
|
||||||
with open(config_json_path, "r", encoding="utf-8") as f:
|
with open(config_json_path, "r", encoding="utf-8") as f:
|
||||||
|
Reference in New Issue
Block a user