We will go through how to download and install the popular Stable Diffusion software AUTOMATIC1111 on Windows step-by-step.
Stable Diffusion is a text-to-image AI that can be run on a consumer-grade PC with a GPU. After this tutorial, you can generate AI images on your own PC.
Contents
- Systems requirements
- Installation steps
- Options
- Next Step
- RTX 4000 series graphic cards
- Updating AUTOMATIC1111
- Web options to run AUTOMATIC1111
- Frequently Asked Questions
- AUTOMATIC1111 does not start after updating.
- Does it work on AMD GPU?
- What Python version should I use?
- How to resolve NaN errors when generating images?
- How to resolve out-of-memory errors?
- Python doesn’t work correctly.
- Is there an easier way to install AUTOMATIC1111?
- I tried everything, but it still does not work.
Systems requirements
Your PC should run Windows 10 or higher with a discrete Nvidia video card (GPU) with 4 GB VRAM or more. An integrated GPU will not work.
If your PC does not meet these requirements, alternatives are
- Cloud service – Google Colab.
- Mac Apple Silicon M1/M2.
Installation steps
Step 1: Install python
You will need Python 3.10.6. (DON’T use Python 3.11 or newer) There are two ways to install Python on Windows
Option 1: Install from the Microsoft store.
Option 2: Use the 64-bit Windows installer provided by the Python website. (If you use this option, make sure to select “Add Python to 3.10 to PATH“)
I recommend installing it from the Microsoft store.
First, remove all Python versions you have previously installed. You can do that in Control Panel → Add or remove programs.
Visit Python 3.10 on Microsoft Store and install the Python software.
This step is most likely to go wrong. Let’s do a check.
Press the Windows key on your keyboard and type “cmd” to find a program called “Command Prompt”.

Open the Command Prompt App. You should see a black terminal like you are a hacker…
Type “python” and press Enter. You should see you see it prints out Python 3.10. This tells you your Python is installed correctly.

Now you can close the Command Prompt App.
Don’t proceed to the next step until you get Python 3.10 installed correctly.
If you don’t see Python 3.10 running, try
- Restarting the PC
- Removing all the previous versions of Python and reinstalling from the Microsoft Store
- If the one from Microsoft Store doesn’t work for you, remove it and try the one on the Python website.
Step 2: Install git
Git is a code repository management system. You will need it to install and update AUTOMATIC1111.
Go to this page to download the windows version.
Open the installer. Click Install to accept the license and install the software.

Follow the instruction to complete the installation.
Step 3: Clone web-ui
This step downloads the Stable Diffusion software (AUTOMATIC1111).
Press the Window key (It should be on the left of the space bar on your keyboard), and a search window should appear. Type cmd
.

Click on Command Prompt. The command prompt window would show up.
First, make sure you are in your home folder by typing the following command and then pressing Enter. (Tip: You should be able to use right-click to paste in Command Prompt.)
cd %userprofile%
You should see your prompt shows something like C:\Users\YOUR_USER_NAME
>.
Next type the following command and press Enter to clone the AUTOMATIC1111 repository.
git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git

A folder called stable-diffusion-webui
should be created in your home directory.
It’s ok to clone the repository in a different folder instead of %userprofile%
, as long as you can find the newly created stable-diffusion-webui
folder. You will need to change the folder location accordingly in the following steps.
Step 4: Download a model file
Next, go to the newly created folder in File Explorer. Put in
%userprofile%\stable-diffusion-webui
in the address bar and press enter.

Navigate to the folder models and then Stable-diffusion. You should see a file Put Stable Diffusion checkpoints here.txt
like below.

Download the Stable Diffusion v1.5 model checkpoint file (download link). Put it in that folder.
Step 5: Run webui
Now in File Explorer, go back to the stable-diffusion-webui
folder. That is, go back up two levels or type
%userprofile%\stable-diffusion-webui
again in the address bar.
Find a file called webui-user.bat
. Double-click to run and complete the installation.

This last step is going to take a while. When it is done, you will see a message
Running on local URL: http://127.0.0.1:7860
like the one below.

In your web browser, go to the URL
http://127.0.0.1:7860/
You should see the AUTOMATIC1111 webui! Put in a prompt (e.g. “a cat”) and hit Generate to test if Stable Diffusion is running correctly.

When you are done using Stable Diffusion, close the cmd
black window to shut down Stable Diffusion.
To rerun Stable Diffusion, you need to double-click the webui-user.bat
.
Options
You can speed up Stable Diffusion with the --xformers
option. If you have less than 8 GB VRAM on GPU, it is a good idea to turn on the --medvram
option to save memory to generate more images at a time.
To enable them, right-click on the file webui-user.bat
and select Edit. (You may need to select “Show More Options” first if you use Windows 11).
Replace the line
set COMMANDLINE_ARGS=
With
set COMMANDLINE_ARGS=--xformers --medvram
Save and close the file.

Double-click the webui-user.bat
file to run Stable Diffusion.
Additional arguments
Use the argument --gradio-img2img-tool color-sketch
to enable the color sketch tool, which could be helpful in img2img.
If you want to use the computer as a server and access the GUI with another computer, use the argument --listen
to enable a connection from another computer. You will need to set the firewall appropriately on the server, and this is beyond the scope of this installation guide.
Next Step
That’s it! I hope you will have fun making AI images.
If you are new to Stable Diffusion, check out the Quick Start Guide for some quick tips to use Stable Diffusion.
Head to our beginner’s series to learn Stable Diffusion step by step.
Check out this prompt generator for building high-quality prompts.
RTX 4000 series graphic cards
Good news for you if you use RTX 4070, RTX 4080 or RTX 4090 Nvidia graphic cards. The latest version of AUTOMATIC1111 supports these video card. (with torch 2.0 and cuda 11.8)
I will provide a benchmark speed so that you can make sure your setup is working correctly. The settings are:
- batch size: 4
- batch count: 10
- Image size: 512×512
- Sampling steps: 20
- Sampling method: Euler a
- Model: SD v1.5
Using a batch size of 1 is not recommended, as the measured speed is likely to be highly dependent on other components on your system.
You should see the speed of generating each image. Pick a stable value, usually in the middle like the 5th batch. The speed is in it/s (iterations per second).
You should get about 10 its/s on RTX 4090. (Note that this is 4 images per iteration) This is the max speed you can get nowadays.
You can use one of the following speed-up parameters.
Option 1:
--xformers
Option 2:
--opt-sdp-no-mem-attention --no-half-vae --opt-channelslast
Option 2 is slightly faster, but test them out to see what works best for you.
Updating AUTOMATIC1111
By default, your copy of AUTOMATIC1111 won’t be automatically updated. Given how fast things are moving, you will likely need to update your copy at some point to use the latest and the coolest.
There are two options for updating it. (1) Updating every time when you run it, and (2) Updating only when needed.
Updating every time you run
To update whenever you run webui, edit the file webui-user.bat
. Add “git pull” before the line calling webui.bat. The file should look something like
@echo off
set PYTHON=
set GIT=
set VENV_DIR=
set COMMANDLINE_ARGS=--xformers --medvram
git pull
call webui.bat
From now on, webui will update itself every time it starts.
Updating as needed
It may not be a good idea to use the latest version because something could be broken. Updating periodically or only if you need a new feature is a more prudent approach.
To update the webui, open Command Prompt (cmd) and go to webui’s directory using the command below. (You will need to change %userprofile%
if you installed it somewhere else.)
cd %userprofile%\stable-diffusion-webui
And run the command
git pull
Resetting webui
If git pull shows an error, it is usually because you have accidentally changed some files. You can reset the webui folder with the following two commands.
cd %userprofile%\stable-diffusion-webui
git checkout -f master
And then run git pull again.
git pull
Note that all files will be reset. You will need to make changes to webui-user.bat
again.
Reverting back to a previous version
Sometimes the latest version of webui is broken, and you don’t want to use it. You can revert back to a previous version by following the instructions below.
Step 1: Go to this page to view previous versions. Each row is a previous version.
Step 2: Pick a previous version you want to revert back to. You can look at the date and comment to make a judgment.
Step 3: Press the copy button to copy the hash code of the version.

Step 4: In the command prompt, run the following commands. The hash code (highlighted below) is just an example. You will paste the one you just copied.
cd %userprofile%\stable-diffusion-webui
git checkout 076d624a297532d6e4abebe5807fd7c7504d7a73
If you see errors, reset the webui (see the previous section) and retry.
After checking out the previous code, delete the venv
folder and restart WebUI.
Web options to run AUTOMATIC1111
Consider the following options for running Stable Diffusion without installing it locally.
(I earn a small commission if you subscribe.)
Graviti Diffus

Graviti Diffus lets you use AUTOMATIC1111 without having a GPU. The service is provided remotely. Follow the link to get an extra 20% credit!
Frequently Asked Questions
AUTOMATIC1111 does not start after updating.
Delete the venv
folder and restart AUTOMATIC1111.
If it still doesn’t work, delete both the venv
and the repositories
folders and restart.
If it still doesn’t work and you have recently installed an extension, delete the folder of that extension in the extensions
folder. Delete the venv
folder and restart.
Does it work on AMD GPU?
No, you have to have an NVIDIA GPU.
What Python version should I use?
Python 3.10.6. Later versions of 3.10 work fine. But don’t use 3.11 or later.
How to resolve NaN errors when generating images?
Add --no-half
argument to webui-user.bat (See Adding arguments)
How to resolve out-of-memory errors?
Use --low-vram
instead of --med-vram
argument in webui-user.bat (See Adding arguments)
Python doesn’t work correctly.
Try removing the previously installed Python using Add or remove programs.
There are two options for installing Python listed. Try the other one if the one you used didn’t work.
Is there an easier way to install AUTOMATIC1111?
The above is the official install instructions. Two alternatives:
- Recently they started to tag release builds. They are supposed to work after downloading and unzipping.
- There’s an unofficial easy installer for Windows you can try.
I tried everything, but it still does not work.
You can use Google Colab to run AUTOMATIC1111. This is what I use. The notebook launches AUTOMATIC1111 with one mouse click.
Or Use AUTOMATIC1111 online.
Hello, Andrew, I ran into exactly the same problem with the op. I tried both things that you listed, and restarted from the git clone step twice, I still only see the two webui-user files instead of the webui-user.bat. Could you please help me with it? Much appreciated!
I think in your case, the extension “.bat” was hidden because of your Windows setting. You one of them is webui-user.bat. The Type of the file should be “Windows Batch File”. Double click on that one.
Hello.
I have laptop with discrete NVIDIA GeFroce GTX GPU and CPU . When I use Stable Diffusion I check resource usage and can see that my CPU is highly loaded, but discrete GPU is not wroking.
Do you know how can I force AUTOMATIC1111 webui work on my discrete GPU?
It uses GPU by default on Windows
The settings in webui-user.bat to control how much GPU VRAM to use are
--lowram
--medvarm
Hi Dear
Could you please help?
i followed the process and im struggling i also read the coments and followed some guidelines like download and run this https://download.pytorch.org/whl/cu118/torch-2.0.1%2Bcu118-cp310-cp310-win_amd64.whl
I tried go here http://127.0.0.1:7860/
Unable to reach site Connection denied by 127.0.0.1.
Try to:
Check the connection
Check your proxy and firewall
ERR_CONNECTION_REFUSED
but im still struggling in here:
Installing torch and torchvision
Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/cu118
Collecting torch==2.0.1
Downloading https://download.pytorch.org/whl/cu118/torch-2.0.1%2Bcu118-cp310-cp310-win_amd64.whl (2619.1 MB)
————————————— 2.6/2.6 GB 21.1 MB/s eta 0:00:01
ERROR: Exception:
Traceback (most recent call last):
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\cli\base_command.py”, line 160, in exc_logging_wrapper
status = run_func(*args)
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\cli\req_command.py”, line 247, in wrapper
return func(self, options, args)
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\commands\install.py”, line 419, in run
requirement_set = resolver.resolve(
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\resolver.py”, line 92, in resolve
result = self._result = resolver.resolve(
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\resolvelib\resolvers.py”, line 481, in resolve
state = resolution.resolve(requirements, max_rounds=max_rounds)
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\resolvelib\resolvers.py”, line 348, in resolve
self._add_to_criteria(self.state.criteria, r, parent=None)
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\resolvelib\resolvers.py”, line 172, in _add_to_criteria
if not criterion.candidates:
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\resolvelib\structs.py”, line 151, in __bool__
return bool(self._sequence)
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\found_candidates.py”, line 155, in __bool__
return any(self)
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\found_candidates.py”, line 143, in
return (c for c in iterator if id(c) not in self._incompatible_ids)
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\found_candidates.py”, line 47, in _iter_built
candidate = func()
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\factory.py”, line 206, in _make_candidate_from_link
self._link_candidate_cache[link] = LinkCandidate(
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\candidates.py”, line 297, in __init__
super().__init__(
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\candidates.py”, line 162, in __init__
self.dist = self._prepare()
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\candidates.py”, line 231, in _prepare
dist = self._prepare_distribution()
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\candidates.py”, line 308, in _prepare_distribution
return preparer.prepare_linked_requirement(self._ireq, parallel_builds=True)
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\operations\prepare.py”, line 491, in prepare_linked_requirement
return self._prepare_linked_requirement(req, parallel_builds)
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\operations\prepare.py”, line 536, in _prepare_linked_requirement
local_file = unpack_url(
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\operations\prepare.py”, line 166, in unpack_url
file = get_http_url(
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\operations\prepare.py”, line 107, in get_http_url
from_path, content_type = download(link, temp_dir.path)
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\network\download.py”, line 147, in __call__
for chunk in chunks:
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\cli\progress_bars.py”, line 53, in _rich_progress_bar
for chunk in iterable:
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\network\utils.py”, line 63, in response_chunks
for chunk in response.raw.stream(
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 622, in stream
data = self.read(amt=amt, decode_content=decode_content)
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 561, in read
data = self._fp_read(amt) if not fp_closed else b””
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 527, in _fp_read
return self._fp.read(amt) if amt is not None else self._fp.read()
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\cachecontrol\filewrapper.py”, line 96, in read
self._close()
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\cachecontrol\filewrapper.py”, line 76, in _close
self.__callback(result)
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\cachecontrol\controller.py”, line 353, in cache_response
self._cache_set(cache_url, request, response, body, expires_time)
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\cachecontrol\controller.py”, line 274, in _cache_set
self.serializer.dumps(request, response, body),
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\cachecontrol\serialize.py”, line 70, in dumps
return b”,”.join([b”cc=4″, msgpack.dumps(data, use_bin_type=True)])
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\msgpack\__init__.py”, line 38, in packb
return Packer(**kwargs).pack(o)
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\msgpack\fallback.py”, line 883, in pack
self._pack(obj)
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\msgpack\fallback.py”, line 862, in _pack
return self._pack_map_pairs(
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\msgpack\fallback.py”, line 968, in _pack_map_pairs
self._pack(v, nest_limit – 1)
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\msgpack\fallback.py”, line 862, in _pack
return self._pack_map_pairs(
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\msgpack\fallback.py”, line 968, in _pack_map_pairs
self._pack(v, nest_limit – 1)
File “C:\Users\Giuseppe\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\msgpack\fallback.py”, line 821, in _pack
return self._buffer.write(obj)
MemoryError
[notice] A new release of pip is available: 23.0.1 -> 23.1.2
[notice] To update, run: C:\Users\Giuseppe\stable-diffusion-webui\venv\Scripts\python.exe -m pip install –upgrade pip
Traceback (most recent call last):
File “C:\Users\Giuseppe\stable-diffusion-webui\launch.py”, line 369, in
prepare_environment()
File “C:\Users\Giuseppe\stable-diffusion-webui\launch.py”, line 271, in prepare_environment
run(f'”{python}” -m {torch_command}’, “Installing torch and torchvision”, “Couldn’t install torch”, live=True)
File “C:\Users\Giuseppe\stable-diffusion-webui\launch.py”, line 95, in run
raise RuntimeError(f”””{errdesc or ‘Error running command’}.
RuntimeError: Couldn’t install torch.
Command: “C:\Users\Giuseppe\stable-diffusion-webui\venv\Scripts\python.exe” -m pip install torch==2.0.1 torchvision==0.15.2 –extra-index-url https://download.pytorch.org/whl/cu118
Error code: 2
Press any key to continue
Hi, this may be related.
https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/10496
I have encountered this lengthy error. Could help me please?
INFO: CCompilerOpt.cc_test_flags[1077] : testing flags (/WX)
WARN: CCompilerOpt.__init__[1244] : feature ‘AVX512_KNL’ is disabled, MSVC compiler doesn’t support it
WARN: CCompilerOpt.__init__[1244] : feature ‘AVX512_KNM’ is disabled, MSVC compiler doesn’t support it
INFO: CCompilerOpt.__init__[1786] : check requested baseline
INFO: CCompilerOpt.feature_test[1551] : testing feature ‘SSE2’ with flags ()
INFO: CCompilerOpt.feature_test[1551] : testing feature ‘SSE’ with flags ()
INFO: CCompilerOpt.feature_test[1551] : testing feature ‘SSE3’ with flags ()
INFO: CCompilerOpt.__init__[1795] : check requested dispatch-able features
INFO: CCompilerOpt.feature_test[1551] : testing feature ‘SSE42’ with flags ()
INFO: CCompilerOpt.feature_test[1551] : testing feature ‘SSSE3’ with flags ()
INFO: CCompilerOpt.feature_test[1551] : testing feature ‘SSE41’ with flags ()
INFO: CCompilerOpt.feature_test[1551] : testing feature ‘POPCNT’ with flags ()
INFO: CCompilerOpt.cc_test_flags[1077] : testing flags (/arch:AVX)
INFO: CCompilerOpt.feature_test[1551] : testing feature ‘AVX’ with flags (/arch:AVX)
INFO: CCompilerOpt.cc_test_flags[1077] : testing flags (/arch:AVX2)
INFO: CCompilerOpt.feature_test[1551] : testing feature ‘AVX2’ with flags (/arch:AVX2)
INFO: CCompilerOpt.feature_test[1551] : testing feature ‘F16C’ with flags (/arch:AVX)
INFO: CCompilerOpt.feature_test[1551] : testing feature ‘FMA3’ with flags (/arch:AVX2)
INFO: CCompilerOpt.cc_test_flags[1077] : testing flags (/arch:AVX512)
INFO: CCompilerOpt.feature_test[1551] : testing feature ‘AVX512F’ with flags (/arch:AVX512)
INFO: CCompilerOpt.feature_test[1551] : testing feature ‘AVX512CD’ with flags (/arch:AVX512)
INFO: CCompilerOpt.feature_test[1551] : testing feature ‘AVX512_SKX’ with flags (/arch:AVX512)
INFO: CCompilerOpt.feature_test[1551] : testing feature ‘AVX512_CLX’ with flags (/arch:AVX512)
INFO: CCompilerOpt.feature_test[1551] : testing feature ‘AVX512_CNL’ with flags (/arch:AVX512)
INFO: CCompilerOpt.feature_test[1551] : testing feature ‘AVX512_ICL’ with flags (/arch:AVX512)
INFO: CCompilerOpt.__init__[1807] : skip features (SSE SSE3 SSE2) since its part of baseline
INFO: CCompilerOpt.__init__[1811] : initialize targets groups
INFO: CCompilerOpt.__init__[1813] : parse target group simd_test
INFO: CCompilerOpt._parse_target_tokens[2024] : skip targets (XOP VSX VSX2 VX VSX4 NEON VXE2 ASIMD VXE FMA4 VSX3) not part of baseline or dispatch-able features
INFO: CCompilerOpt._parse_policy_not_keepbase[2136] : skip baseline features (SSE2)
INFO: CCompilerOpt.generate_dispatch_header[2357] : generate CPU dispatch header: (build\src.win-amd64-3.11\numpy\distutils\include\npy_cpu_dispatch_config.h)
WARN: CCompilerOpt.generate_dispatch_header[2366] : dispatch header dir build\src.win-amd64-3.11\numpy\distutils\include does not exist, creating it
INFO: CCompilerOpt.feature_extra_checks[1631] : Testing extra checks for feature ‘AVX512F’ (AVX512F_REDUCE)
INFO: CCompilerOpt.feature_extra_checks[1631] : Testing extra checks for feature ‘AVX512_SKX’ (AVX512BW_MASK AVX512DQ_MASK)
INFO: No module named ‘numpy.distutils._msvccompiler’ in numpy.distutils; trying from distutils
INFO: customize MSVCCompiler
WARN: Missing compiler_cxx fix for MSVCCompiler
INFO: customize MSVCCompiler using ConditionalOpenMP
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\cl.exe /c /nologo /O2 /W3 /GL /DNDEBUG /MD -ID:\stable-diffusion-webui\venv\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\ATLMFC\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.22000.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\cppwinrt /Tctest.c /Fotest.obj /openmp
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\link.exe /nologo /INCREMENTAL:NO /LTCG /LIBPATH:D:\stable-diffusion-webui\venv\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311 /LIBPATH:D:\stable-diffusion-webui\venv\PCbuild\amd64 /LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\lib\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.22000.0\ucrt\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.22000.0\\um\x64 test.obj /OUT:testlib.dll /DLL
INFO: building ‘skimage._shared.geometry’ extension
INFO: compiling C sources
creating build\temp.win-amd64-3.11\Release\skimage
creating build\temp.win-amd64-3.11\Release\skimage\_shared
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\cl.exe /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -Ibuild\src.win-amd64-3.11\numpy\distutils\include -ID:\stable-diffusion-webui\venv\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\ATLMFC\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.22000.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\cppwinrt /Tcskimage\_shared\geometry.c /Fobuild\temp.win-amd64-3.11\Release\skimage\_shared\geometry.obj /openmp
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\link.exe /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:D:\stable-diffusion-webui\venv\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311 /LIBPATH:D:\stable-diffusion-webui\venv\PCbuild\amd64 /LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\lib\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.22000.0\ucrt\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.22000.0\\um\x64 /EXPORT:PyInit_geometry build\temp.win-amd64-3.11\Release\skimage\_shared\geometry.obj /OUT:build\lib.win-amd64-3.11\skimage\_shared\geometry.cp311-win_amd64.pyd /IMPLIB:build\temp.win-amd64-3.11\Release\skimage\_shared\geometry.cp311-win_amd64.lib
INFO: building ‘skimage._shared.transform’ extension
INFO: compiling C sources
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\cl.exe /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -Ibuild\src.win-amd64-3.11\numpy\distutils\include -ID:\stable-diffusion-webui\venv\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\ATLMFC\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.22000.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\cppwinrt /Tcskimage\_shared\transform.c /Fobuild\temp.win-amd64-3.11\Release\skimage\_shared\transform.obj /openmp
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\link.exe /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:D:\stable-diffusion-webui\venv\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311 /LIBPATH:D:\stable-diffusion-webui\venv\PCbuild\amd64 /LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\lib\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.22000.0\ucrt\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.22000.0\\um\x64 /EXPORT:PyInit_transform build\temp.win-amd64-3.11\Release\skimage\_shared\transform.obj /OUT:build\lib.win-amd64-3.11\skimage\_shared\transform.cp311-win_amd64.pyd /IMPLIB:build\temp.win-amd64-3.11\Release\skimage\_shared\transform.cp311-win_amd64.lib
INFO: building ‘skimage._shared.interpolation’ extension
INFO: compiling C sources
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\cl.exe /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -Ibuild\src.win-amd64-3.11\numpy\distutils\include -ID:\stable-diffusion-webui\venv\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\ATLMFC\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.22000.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\cppwinrt /Tcskimage\_shared\interpolation.c /Fobuild\temp.win-amd64-3.11\Release\skimage\_shared\interpolation.obj /openmp
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\link.exe /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:D:\stable-diffusion-webui\venv\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311 /LIBPATH:D:\stable-diffusion-webui\venv\PCbuild\amd64 /LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\lib\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.22000.0\ucrt\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.22000.0\\um\x64 /EXPORT:PyInit_interpolation build\temp.win-amd64-3.11\Release\skimage\_shared\interpolation.obj /OUT:build\lib.win-amd64-3.11\skimage\_shared\interpolation.cp311-win_amd64.pyd /IMPLIB:build\temp.win-amd64-3.11\Release\skimage\_shared\interpolation.cp311-win_amd64.lib
INFO: building ‘skimage._shared.fast_exp’ extension
INFO: compiling C sources
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\cl.exe /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -Ibuild\src.win-amd64-3.11\numpy\distutils\include -ID:\stable-diffusion-webui\venv\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\ATLMFC\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.22000.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\cppwinrt /Tcskimage\_shared\fast_exp.c /Fobuild\temp.win-amd64-3.11\Release\skimage\_shared\fast_exp.obj /openmp
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\link.exe /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:D:\stable-diffusion-webui\venv\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311 /LIBPATH:D:\stable-diffusion-webui\venv\PCbuild\amd64 /LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\lib\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.22000.0\ucrt\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.22000.0\\um\x64 /EXPORT:PyInit_fast_exp build\temp.win-amd64-3.11\Release\skimage\_shared\fast_exp.obj /OUT:build\lib.win-amd64-3.11\skimage\_shared\fast_exp.cp311-win_amd64.pyd /IMPLIB:build\temp.win-amd64-3.11\Release\skimage\_shared\fast_exp.cp311-win_amd64.lib
INFO: building ‘skimage.draw._draw’ extension
INFO: compiling C sources
creating build\temp.win-amd64-3.11\Release\skimage\draw
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\cl.exe /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -Iskimage\_shared -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -Ibuild\src.win-amd64-3.11\numpy\distutils\include -ID:\stable-diffusion-webui\venv\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\ATLMFC\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.22000.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\cppwinrt /Tcskimage\draw\_draw.c /Fobuild\temp.win-amd64-3.11\Release\skimage\draw\_draw.obj /openmp
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\link.exe /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:D:\stable-diffusion-webui\venv\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311 /LIBPATH:D:\stable-diffusion-webui\venv\PCbuild\amd64 /LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\lib\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.22000.0\ucrt\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.22000.0\\um\x64 /EXPORT:PyInit__draw build\temp.win-amd64-3.11\Release\skimage\draw\_draw.obj /OUT:build\lib.win-amd64-3.11\skimage\draw\_draw.cp311-win_amd64.pyd /IMPLIB:build\temp.win-amd64-3.11\Release\skimage\draw\_draw.cp311-win_amd64.lib
INFO: building ‘skimage.feature._cascade’ extension
INFO: compiling C sources
creating build\temp.win-amd64-3.11\Release\skimage\feature
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\cl.exe /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -Ibuild\src.win-amd64-3.11\numpy\distutils\include -ID:\stable-diffusion-webui\venv\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\ATLMFC\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.22000.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\cppwinrt /EHsc /Tpskimage\feature\_cascade.cpp /Fobuild\temp.win-amd64-3.11\Release\skimage\feature\_cascade.obj /openmp /Zm1000
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\link.exe /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:D:\stable-diffusion-webui\venv\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311 /LIBPATH:D:\stable-diffusion-webui\venv\PCbuild\amd64 /LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\lib\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.22000.0\ucrt\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.22000.0\\um\x64 /EXPORT:PyInit__cascade build\temp.win-amd64-3.11\Release\skimage\feature\_cascade.obj /OUT:build\lib.win-amd64-3.11\skimage\feature\_cascade.cp311-win_amd64.pyd /IMPLIB:build\temp.win-amd64-3.11\Release\skimage\feature\_cascade.cp311-win_amd64.lib
INFO: building ‘skimage.feature.corner_cy’ extension
INFO: compiling C sources
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\cl.exe /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -Ibuild\src.win-amd64-3.11\numpy\distutils\include -ID:\stable-diffusion-webui\venv\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\ATLMFC\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.22000.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\cppwinrt /Tcskimage\feature\corner_cy.c /Fobuild\temp.win-amd64-3.11\Release\skimage\feature\corner_cy.obj /openmp
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\link.exe /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:D:\stable-diffusion-webui\venv\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311 /LIBPATH:D:\stable-diffusion-webui\venv\PCbuild\amd64 /LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\lib\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.22000.0\ucrt\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.22000.0\\um\x64 /EXPORT:PyInit_corner_cy build\temp.win-amd64-3.11\Release\skimage\feature\corner_cy.obj /OUT:build\lib.win-amd64-3.11\skimage\feature\corner_cy.cp311-win_amd64.pyd /IMPLIB:build\temp.win-amd64-3.11\Release\skimage\feature\corner_cy.cp311-win_amd64.lib
INFO: building ‘skimage.feature.censure_cy’ extension
INFO: compiling C sources
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\cl.exe /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -Ibuild\src.win-amd64-3.11\numpy\distutils\include -ID:\stable-diffusion-webui\venv\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\ATLMFC\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.22000.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\cppwinrt /Tcskimage\feature\censure_cy.c /Fobuild\temp.win-amd64-3.11\Release\skimage\feature\censure_cy.obj /openmp
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\link.exe /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:D:\stable-diffusion-webui\venv\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311 /LIBPATH:D:\stable-diffusion-webui\venv\PCbuild\amd64 /LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\lib\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.22000.0\ucrt\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.22000.0\\um\x64 /EXPORT:PyInit_censure_cy build\temp.win-amd64-3.11\Release\skimage\feature\censure_cy.obj /OUT:build\lib.win-amd64-3.11\skimage\feature\censure_cy.cp311-win_amd64.pyd /IMPLIB:build\temp.win-amd64-3.11\Release\skimage\feature\censure_cy.cp311-win_amd64.lib
INFO: building ‘skimage.feature.orb_cy’ extension
INFO: compiling C sources
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\cl.exe /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -Ibuild\src.win-amd64-3.11\numpy\distutils\include -ID:\stable-diffusion-webui\venv\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\ATLMFC\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.22000.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\cppwinrt /Tcskimage\feature\orb_cy.c /Fobuild\temp.win-amd64-3.11\Release\skimage\feature\orb_cy.obj /openmp
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\link.exe /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:D:\stable-diffusion-webui\venv\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311 /LIBPATH:D:\stable-diffusion-webui\venv\PCbuild\amd64 /LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\lib\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.22000.0\ucrt\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.22000.0\\um\x64 /EXPORT:PyInit_orb_cy build\temp.win-amd64-3.11\Release\skimage\feature\orb_cy.obj /OUT:build\lib.win-amd64-3.11\skimage\feature\orb_cy.cp311-win_amd64.pyd /IMPLIB:build\temp.win-amd64-3.11\Release\skimage\feature\orb_cy.cp311-win_amd64.lib
INFO: building ‘skimage.feature._texture’ extension
INFO: compiling C sources
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\cl.exe /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -Iskimage\_shared -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -Ibuild\src.win-amd64-3.11\numpy\distutils\include -ID:\stable-diffusion-webui\venv\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\ATLMFC\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.22000.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\cppwinrt /Tcskimage\feature\_texture.c /Fobuild\temp.win-amd64-3.11\Release\skimage\feature\_texture.obj /openmp
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\link.exe /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:D:\stable-diffusion-webui\venv\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311 /LIBPATH:D:\stable-diffusion-webui\venv\PCbuild\amd64 /LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\lib\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.22000.0\ucrt\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.22000.0\\um\x64 /EXPORT:PyInit__texture build\temp.win-amd64-3.11\Release\skimage\feature\_texture.obj /OUT:build\lib.win-amd64-3.11\skimage\feature\_texture.cp311-win_amd64.pyd /IMPLIB:build\temp.win-amd64-3.11\Release\skimage\feature\_texture.cp311-win_amd64.lib
INFO: building ‘skimage.feature._hoghistogram’ extension
INFO: compiling C sources
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\cl.exe /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -Iskimage\_shared -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -Ibuild\src.win-amd64-3.11\numpy\distutils\include -ID:\stable-diffusion-webui\venv\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\ATLMFC\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.22000.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\cppwinrt /Tcskimage\feature\_hoghistogram.c /Fobuild\temp.win-amd64-3.11\Release\skimage\feature\_hoghistogram.obj /openmp
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\link.exe /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:D:\stable-diffusion-webui\venv\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311 /LIBPATH:D:\stable-diffusion-webui\venv\PCbuild\amd64 /LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\lib\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.22000.0\ucrt\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.22000.0\\um\x64 /EXPORT:PyInit__hoghistogram build\temp.win-amd64-3.11\Release\skimage\feature\_hoghistogram.obj /OUT:build\lib.win-amd64-3.11\skimage\feature\_hoghistogram.cp311-win_amd64.pyd /IMPLIB:build\temp.win-amd64-3.11\Release\skimage\feature\_hoghistogram.cp311-win_amd64.lib
INFO: building ‘skimage.feature._haar’ extension
INFO: compiling C sources
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\cl.exe /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -Iskimage\_shared -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -Ibuild\src.win-amd64-3.11\numpy\distutils\include -ID:\stable-diffusion-webui\venv\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\ATLMFC\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.22000.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\cppwinrt /EHsc /Tpskimage\feature\_haar.cpp /Fobuild\temp.win-amd64-3.11\Release\skimage\feature\_haar.obj /openmp /Zm1000
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\link.exe /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:D:\stable-diffusion-webui\venv\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311 /LIBPATH:D:\stable-diffusion-webui\venv\PCbuild\amd64 /LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\lib\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.22000.0\ucrt\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.22000.0\\um\x64 /EXPORT:PyInit__haar build\temp.win-amd64-3.11\Release\skimage\feature\_haar.obj /OUT:build\lib.win-amd64-3.11\skimage\feature\_haar.cp311-win_amd64.pyd /IMPLIB:build\temp.win-amd64-3.11\Release\skimage\feature\_haar.cp311-win_amd64.lib
INFO: building ‘skimage.feature._sift’ extension
INFO: compiling C sources
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\cl.exe /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -Iskimage\_shared -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -Ibuild\src.win-amd64-3.11\numpy\distutils\include -ID:\stable-diffusion-webui\venv\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\ATLMFC\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.22000.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\cppwinrt /Tcskimage\feature\_sift.c /Fobuild\temp.win-amd64-3.11\Release\skimage\feature\_sift.obj /openmp
INFO: C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\link.exe /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:D:\stable-diffusion-webui\venv\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311\libs /LIBPATH:C:\Users\hieu\AppData\Local\Programs\Python\Python311 /LIBPATH:D:\stable-diffusion-webui\venv\PCbuild\amd64 /LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\lib\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.22000.0\ucrt\x64 /LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.22000.0\\um\x64 /EXPORT:PyInit__sift build\temp.win-amd64-3.11\Release\skimage\feature\_sift.obj /OUT:build\lib.win-amd64-3.11\skimage\feature\_sift.cp311-win_amd64.pyd /IMPLIB:build\temp.win-amd64-3.11\Release\skimage\feature\_sift.cp311-win_amd64.lib
INFO: building ‘skimage.feature.brief_cy’ extension
INFO: compiling C sources
INFO: clang-cl.exe /c /nologo /O2 /W3 /GL /DNDEBUG /MD -DENABLE_PYTHON_MODULE -D__PYTHRAN__=3 -DPYTHRAN_BLAS_NONE -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages/pythran -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -Ibuild\src.win-amd64-3.11\numpy\distutils\include -ID:\stable-diffusion-webui\venv\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\ATLMFC\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.22000.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\cppwinrt /EHsc /Tpskimage/feature/brief_pythran.cpp /Fobuild\temp.win-amd64-3.11\Release\skimage/feature/brief_pythran.obj /std:c++14 /w /openmp /Zm1000
[WinError 2] The system cannot find the file specified
error: Command “clang-cl.exe /c /nologo /O2 /W3 /GL /DNDEBUG /MD -DENABLE_PYTHON_MODULE -D__PYTHRAN__=3 -DPYTHRAN_BLAS_NONE -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages/pythran -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -IC:\Users\hieu\AppData\Local\Temp\pip-build-env-b28twx9e\overlay\Lib\site-packages\numpy\core\include -Ibuild\src.win-amd64-3.11\numpy\distutils\include -ID:\stable-diffusion-webui\venv\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Users\hieu\AppData\Local\Programs\Python\Python311\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.36.32532\ATLMFC\include -IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include -IC:\Program Files (x86)\Windows Kits\10\include\10.0.22000.0\ucrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\um -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\shared -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\winrt -IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\cppwinrt /EHsc /Tpskimage/feature/brief_pythran.cpp /Fobuild\temp.win-amd64-3.11\Release\skimage/feature/brief_pythran.obj /std:c++14 /w /openmp /Zm1000” failed with exit status 127
INFO:
########### EXT COMPILER OPTIMIZATION ###########
INFO: Platform :
Architecture: x64
Compiler : msvc
CPU baseline :
Requested : ‘min’
Enabled : SSE SSE2 SSE3
Flags : none
Extra checks: none
CPU dispatch :
Requested : ‘max -xop -fma4’
Enabled : SSSE3 SSE41 POPCNT SSE42 AVX F16C FMA3 AVX2 AVX512F AVX512CD AVX512_SKX AVX512_CLX AVX512_CNL AVX512_ICL
Generated : none
INFO: CCompilerOpt.cache_flush[857] : write cache to path -> C:\Users\hieu\AppData\Local\Temp\pip-install-7nz1yc1h\scikit-image_a75b5e31a8ff4172a19384edc307ccd7\build\temp.win-amd64-3.11\Release\ccompiler_opt_cache_ext.py
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for scikit-image
ERROR: Could not build wheels for scikit-image, which is required to install pyproject.toml-based projects
The error comes from python packages. I think you may have python previously installed? Remove all of them and start over from installing python if possible.
Otherwise, you will need to sort them out yourself.
no-half has fixed it for me. Thanks for the reply Adrew! Great effort helping literally hundreds of people here in the comments!
I deleted and reinstalled it 6 times but unfortunately there is no cure, you can add some arguments to the web ui.bat but then deforum does not work
I followed everything to a T but there is no file named “webui-user-bat”. I have 2 “webui-user” files, one is a windows batch file, the other is a shell script. I ran the batch file but doesn’t look like you python window.
You should have webui-user.bat
It is one of the files you downloaded when you run the git clone command.
In cmd, cd into the webui folder and try run “git checkout -f”
If you still not seeing it, delete the webui folder and restart from the git clone step.
Already tried setting the “Upcast cross attention layer to float32″ option, but to no avail.
Error completing request
Arguments: (‘task(x1euojzg33zou9e)’, ‘cat’, ”, [], 20, 0, False, False, 1, 1, 7, -1.0, -1.0, 0, 0, 0, False, 512, 512, False, 0.7, 2, ‘Latent’, 0, 0, 0, [], 0, False, False, ‘positive’, ‘comma’, 0, False, False, ”, 1, ”, [], 0, ”, [], 0, ”, [], True, False, False, False, 0) {}
Traceback (most recent call last):
File “C:\Users\mail\stable-diffusion-webui\modules\call_queue.py”, line 57, in f
res = list(func(*args, **kwargs))
File “C:\Users\mail\stable-diffusion-webui\modules\call_queue.py”, line 37, in f
res = func(*args, **kwargs)
File “C:\Users\mail\stable-diffusion-webui\modules\txt2img.py”, line 56, in txt2img
processed = process_images(p)
File “C:\Users\mail\stable-diffusion-webui\modules\processing.py”, line 526, in process_images
res = process_images_inner(p)
File “C:\Users\mail\stable-diffusion-webui\modules\processing.py”, line 680, in process_images_inner
samples_ddim = p.sample(conditioning=c, unconditional_conditioning=uc, seeds=seeds, subseeds=subseeds, subseed_strength=p.subseed_strength, prompts=prompts)
File “C:\Users\mail\stable-diffusion-webui\modules\processing.py”, line 907, in sample
samples = self.sampler.sample(self, x, conditioning, unconditional_conditioning, image_conditioning=self.txt2img_image_conditioning(x))
File “C:\Users\mail\stable-diffusion-webui\modules\sd_samplers_kdiffusion.py”, line 377, in sample
samples = self.launch_sampling(steps, lambda: self.func(self.model_wrap_cfg, x, extra_args={
File “C:\Users\mail\stable-diffusion-webui\modules\sd_samplers_kdiffusion.py”, line 251, in launch_sampling
return func()
File “C:\Users\mail\stable-diffusion-webui\modules\sd_samplers_kdiffusion.py”, line 377, in
samples = self.launch_sampling(steps, lambda: self.func(self.model_wrap_cfg, x, extra_args={
File “C:\Users\mail\stable-diffusion-webui\venv\lib\site-packages\torch\utils\_contextlib.py”, line 115, in decorate_context
return func(*args, **kwargs)
File “C:\Users\mail\stable-diffusion-webui\repositories\k-diffusion\k_diffusion\sampling.py”, line 145, in sample_euler_ancestral
denoised = model(x, sigmas[i] * s_in, **extra_args)
File “C:\Users\mail\stable-diffusion-webui\venv\lib\site-packages\torch\nn\modules\module.py”, line 1501, in _call_impl
return forward_call(*args, **kwargs)
File “C:\Users\mail\stable-diffusion-webui\modules\sd_samplers_kdiffusion.py”, line 167, in forward
devices.test_for_nans(x_out, “unet”)
File “C:\Users\mail\stable-diffusion-webui\modules\devices.py”, line 156, in test_for_nans raise NansException(message)
modules.devices.NansException: A tensor with all NaNs was produced in Unet. This could be either because there’s not enough precision to represent the picture, or because your video card does not support half type. Try setting the “Upcast cross attention layer to float32” option in Settings > Stable Diffusion or using the –no-half commandline argument to fix this. Use –disable-nan-check commandline argument to disable this check.
Does it happen only to certain models?
Have you tried no-half and disable-nan-check?
Never mind, it has finally worked. Thanks for the tutorial.
I also had a long error after multiple attempts to download pytorch.
Also based on your response to someone else:
“If you are able to manually down the whl files, you can install them by
.\venv\Scripts\python.exe -m pip install C:/some-dir/some-file.whl”
After I’ve downloaded the file, will I open CMD in the webui-user folder and type this “.\venv\Scripts\python.exe -m pip install C:/…”?
And last question, are there additional that are gigs in size that will be downloaded through cmd?
Hi and sorry for my long message, I’ve tried running the bat file and around 1gb of download, it fails. ive done it multiple times and its now tiring. If I download the pytouch file using this link, how will I install it into the right directory?
I’m guessing within the folder for the bat file, ill open cmd and type .\venv\Script\python.exe -m …
based on your response to someone else:
“If you are able to manually down the whl files, you can install them by
.\venv\Scripts\python.exe -m pip install C:/some-dir/some-file.whl”
And also please another question, after downloading pytorch, is there any file to be downloaded that’s in gigs? Just asking because i have limited internet and i’ve already spent ove a quarter on the model and now on this this error.
below is the error message
Downloading https://download.pytorch.org/whl/cu118/torch-2.0.1%2Bcu118-cp310-cp310-win_amd64.whl (2619.1 MB)
———————– —————- 1.6/2.6 GB 892.0 kB/s eta 0:19:45
ERROR: Exception:
Traceback (most recent call last):
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 435, in _error_catcher
yield
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 516, in read
data = self._fp.read(amt) if not fp_closed else b””
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\cachecontrol\filewrapper.py”, line 90, in read
data = self.__fp.read(amt)
File “C:\Users\Devin\AppData\Local\Programs\Python\Python310\lib\http\client.py”, line 465, in read
s = self.fp.read(amt)
File “C:\Users\Devin\AppData\Local\Programs\Python\Python310\lib\socket.py”, line 705, in readinto
return self._sock.recv_into(b)
File “C:\Users\Devin\AppData\Local\Programs\Python\Python310\lib\ssl.py”, line 1274, in recv_into
return self.read(nbytes, buffer)
File “C:\Users\Devin\AppData\Local\Programs\Python\Python310\lib\ssl.py”, line 1130, in read
return self._sslobj.read(len, buffer)
TimeoutError: The read operation timed out
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\cli\base_command.py”, line 167, in exc_logging_wrapper
status = run_func(*args)
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\cli\req_command.py”, line 247, in wrapper
return func(self, options, args)
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\commands\install.py”, line 369, in run
requirement_set = resolver.resolve(
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\resolver.py”, line 92, in resolve
result = self._result = resolver.resolve(
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\resolvelib\resolvers.py”, line 481, in resolve
state = resolution.resolve(requirements, max_rounds=max_rounds)
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\resolvelib\resolvers.py”, line 348, in resolve
self._add_to_criteria(self.state.criteria, r, parent=None)
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\resolvelib\resolvers.py”, line 172, in _add_to_criteria
if not criterion.candidates:
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\resolvelib\structs.py”, line 151, in __bool__
return bool(self._sequence)
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\found_candidates.py”, line 155, in __bool__
return any(self)
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\found_candidates.py”, line 143, in
return (c for c in iterator if id(c) not in self._incompatible_ids)
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\found_candidates.py”, line 47, in _iter_built
candidate = func()
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\factory.py”, line 206, in _make_candidate_from_link
self._link_candidate_cache[link] = LinkCandidate(
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\candidates.py”, line 297, in __init__
super().__init__(
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\candidates.py”, line 162, in __init__
self.dist = self._prepare()
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\candidates.py”, line 231, in _prepare
dist = self._prepare_distribution()
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\candidates.py”, line 308, in _prepare_distribution
return preparer.prepare_linked_requirement(self._ireq, parallel_builds=True)
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\operations\prepare.py”, line 438, in prepare_linked_requirement
return self._prepare_linked_requirement(req, parallel_builds)
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\operations\prepare.py”, line 483, in _prepare_linked_requirement
local_file = unpack_url(
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\operations\prepare.py”, line 165, in unpack_url
file = get_http_url(
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\operations\prepare.py”, line 106, in get_http_url
from_path, content_type = download(link, temp_dir.path)
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\network\download.py”, line 147, in __call__
for chunk in chunks:
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\cli\progress_bars.py”, line 53, in _rich_progress_bar
for chunk in iterable:
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\network\utils.py”, line 63, in response_chunks
for chunk in response.raw.stream(
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 573, in stream
data = self.read(amt=amt, decode_content=decode_content)
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 509, in read
with self._error_catcher():
File “C:\Users\Devin\AppData\Local\Programs\Python\Python310\lib\contextlib.py”, line 153, in __exit__
self.gen.throw(typ, value, traceback)
File “C:\AI\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 440, in _error_catcher
raise ReadTimeoutError(self._pool, None, “Read timed out.”)
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host=’download.pytorch.org’, port=443): Read timed out.
[notice] A new release of pip available: 22.2.1 -> 23.1.2
[notice] To update, run: C:\AI\stable-diffusion-webui\venv\Scripts\python.exe -m pip install –upgrade pip
Traceback (most recent call last):
File “C:\AI\stable-diffusion-webui\launch.py”, line 369, in
prepare_environment()
File “C:\AI\stable-diffusion-webui\launch.py”, line 271, in prepare_environment
run(f'”{python}” -m {torch_command}’, “Installing torch and torchvision”, “Couldn’t install torch”, live=True)
File “C:\AI\stable-diffusion-webui\launch.py”, line 95, in run
raise RuntimeError(f”””{errdesc or ‘Error running command’}.
RuntimeError: Couldn’t install torch.
Command: “C:\AI\stable-diffusion-webui\venv\Scripts\python.exe” -m pip install torch==2.0.1 torchvision==0.15.2 –extra-index-url https://download.pytorch.org/whl/cu118
Error code: 2
Press any key to continue . . .
Hi, I got this while installing torch. Try differents solutions: delete venv, reinstalling python 3.10, use cmd prompt to install manually, none works. Can u help me? Can I download manually from the torch link u gave above, if so which folder should I put it in? Thanks
ERROR: Exception
Traceback (most recent call last):
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 438, in _error_catcher
yield
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 561, in read
data = self._fp_read(amt) if not fp_closed else b””
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 527, in _fp_read
return self._fp.read(amt) if amt is not None else self._fp.read()
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\cachecontrol\filewrapper.py”, line 90, in read
data = self.__fp.read(amt)
File “C:\Users\ADMIN\AppData\Local\Programs\Python\Python310\lib\http\client.py”, line 465, in read
s = self.fp.read(amt)
File “C:\Users\ADMIN\AppData\Local\Programs\Python\Python310\lib\socket.py”, line 705, in readinto
return self._sock.recv_into(b)
File “C:\Users\ADMIN\AppData\Local\Programs\Python\Python310\lib\ssl.py”, line 1274, in recv_into
return self.read(nbytes, buffer)
File “C:\Users\ADMIN\AppData\Local\Programs\Python\Python310\lib\ssl.py”, line 1130, in read
return self._sslobj.read(len, buffer)
TimeoutError: The read operation timed out
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\cli\base_command.py”, line 169, in exc_logging_wrapper
status = run_func(*args)
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\cli\req_command.py”, line 248, in wrapper
return func(self, options, args)
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\commands\install.py”, line 377, in run
requirement_set = resolver.resolve(
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\resolver.py”, line 92, in resolve
result = self._result = resolver.resolve(
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\resolvelib\resolvers.py”, line 546, in resolve
state = resolution.resolve(requirements, max_rounds=max_rounds)
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\resolvelib\resolvers.py”, line 397, in resolve
self._add_to_criteria(self.state.criteria, r, parent=None)
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\resolvelib\resolvers.py”, line 173, in _add_to_criteria
if not criterion.candidates:
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\resolvelib\structs.py”, line 156, in __bool__
return bool(self._sequence)
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\found_candidates.py”, line 155, in __bool__
return any(self)
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\found_candidates.py”, line 143, in
return (c for c in iterator if id(c) not in self._incompatible_ids)
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\found_candidates.py”, line 47, in _iter_built
candidate = func()
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\factory.py”, line 206, in _make_candidate_from_link
self._link_candidate_cache[link] = LinkCandidate(
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\candidates.py”, line 293, in __init__
super().__init__(
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\candidates.py”, line 156, in __init__
self.dist = self._prepare()
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\candidates.py”, line 225, in _prepare
dist = self._prepare_distribution()
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\candidates.py”, line 304, in _prepare_distribution
return preparer.prepare_linked_requirement(self._ireq, parallel_builds=True)
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\operations\prepare.py”, line 516, in prepare_linked_requirement
return self._prepare_linked_requirement(req, parallel_builds)
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\operations\prepare.py”, line 587, in _prepare_linked_requirement
local_file = unpack_url(
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\operations\prepare.py”, line 166, in unpack_url
file = get_http_url(
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\operations\prepare.py”, line 107, in get_http_url
from_path, content_type = download(link, temp_dir.path)
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\network\download.py”, line 147, in __call__
for chunk in chunks:
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\cli\progress_bars.py”, line 53, in _rich_progress_bar
for chunk in iterable:
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\network\utils.py”, line 63, in response_chunks
for chunk in response.raw.stream(
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 622, in stream
data = self.read(amt=amt, decode_content=decode_content)
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 560, in read
with self._error_catcher():
File “C:\Users\ADMIN\AppData\Local\Programs\Python\Python310\lib\contextlib.py”, line 153, in __exit__
self.gen.throw(typ, value, traceback)
File “C:\Users\ADMIN\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 443, in _error_catcher
raise ReadTimeoutError(self._pool, None, “Read timed out.”)
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host=’download.pytorch.org’, port=443): Read timed out.
If you are able to manually down the whl files, you can install them by
.\venv\Scripts\python.exe -m pip install C:/some-dir/some-file.whl
Hllo, i got an error during the installation :
venv “C:\Users\Anthony\Desktop\SD 2.0\stable-diffusion-webui\venv\Scripts\Python.exe”
Python 3.10.7 (tags/v3.10.7:6cc6b13, Sep 5 2022, 14:08:36) [MSC v.1933 64 bit (AMD64)]
Version: v1.2.1
Commit hash: 89f9faa63388756314e8a1d96cf86bf5e0663045
Installing torch and torchvision
C:\Users\Anthony\Desktop\SD 2.0\stable-diffusion-webui\venv\Scripts\python.exe: No module named pip
Traceback (most recent call last):
File “C:\Users\Anthony\Desktop\SD 2.0\stable-diffusion-webui\launch.py”, line 369, in
prepare_environment()
File “C:\Users\Anthony\Desktop\SD 2.0\stable-diffusion-webui\launch.py”, line 271, in prepare_environment
run(f'”{python}” -m {torch_command}’, “Installing torch and torchvision”, “Couldn’t install torch”, live=True)
File “C:\Users\Anthony\Desktop\SD 2.0\stable-diffusion-webui\launch.py”, line 95, in run
raise RuntimeError(f”””{errdesc or ‘Error running command’}.
RuntimeError: Couldn’t install torch.
Command: “C:\Users\Anthony\Desktop\SD 2.0\stable-diffusion-webui\venv\Scripts\python.exe” -m pip install torch==2.0.1 torchvision==0.15.2 –extra-index-url https://download.pytorch.org/whl/cu118
Error code: 1
Hi, the error is:
C:\Users\Anthony\Desktop\SD 2.0\stable-diffusion-webui\venv\Scripts\python.exe: No module named pip
In cmd, after going into the stable-diffusion-webui folder, run
ven\Scripts\python.exe -m ensurepip --upgrade
thank you very much ,my dear andrew.Salute to you – a stranger far away
venv “D:\stable-diffusion-webui\venv\Scripts\Python.exe”
Python 3.10.6 (tags/v3.10.6:9c7b4bd, Aug 1 2022, 21:53:49) [MSC v.1932 64 bit (AMD64)]
Version: v1.2.1
Commit hash: 89f9faa63388756314e8a1d96cf86bf5e0663045
Installing torch and torchvision
Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/cu118
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by ‘ProxyError(‘Cannot connect to proxy.’, TimeoutError(‘_ssl.c:980: The handshake operation timed out’))’: /simple/torch/
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by ‘ReadTimeoutError(“HTTPSConnectionPool(host=’pypi.org’, port=443): Read timed out. (read timeout=15)”)’: /simple/torch/
Collecting torch==2.0.1
Downloading https://download.pytorch.org/whl/cu118/torch-2.0.1%2Bcu118-cp310-cp310-win_amd64.whl (2619.1 MB)
—————————————- 0.0/2.6 GB 487.5 kB/s eta 1:28:36
ERROR: Exception:
Traceback (most recent call last):
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 438, in _error_catcher
yield
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 561, in read
data = self._fp_read(amt) if not fp_closed else b””
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 527, in _fp_read
return self._fp.read(amt) if amt is not None else self._fp.read()
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\cachecontrol\filewrapper.py”, line 90, in read
data = self.__fp.read(amt)
File “C:\Users\Administrator\AppData\Local\Programs\Python\Python310\lib\http\client.py”, line 465, in read
s = self.fp.read(amt)
File “C:\Users\Administrator\AppData\Local\Programs\Python\Python310\lib\socket.py”, line 705, in readinto
return self._sock.recv_into(b)
File “C:\Users\Administrator\AppData\Local\Programs\Python\Python310\lib\ssl.py”, line 1274, in recv_into
return self.read(nbytes, buffer)
File “C:\Users\Administrator\AppData\Local\Programs\Python\Python310\lib\ssl.py”, line 1130, in read
return self._sslobj.read(len, buffer)
TimeoutError: The read operation timed out
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\cli\base_command.py”, line 169, in exc_logging_wrapper
status = run_func(*args)
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\cli\req_command.py”, line 248, in wrapper
return func(self, options, args)
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\commands\install.py”, line 377, in run
requirement_set = resolver.resolve(
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\resolver.py”, line 92, in resolve
result = self._result = resolver.resolve(
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\resolvelib\resolvers.py”, line 546, in resolve
state = resolution.resolve(requirements, max_rounds=max_rounds)
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\resolvelib\resolvers.py”, line 397, in resolve
self._add_to_criteria(self.state.criteria, r, parent=None)
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\resolvelib\resolvers.py”, line 173, in _add_to_criteria
if not criterion.candidates:
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\resolvelib\structs.py”, line 156, in __bool__
return bool(self._sequence)
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\found_candidates.py”, line 155, in __bool__
return any(self)
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\found_candidates.py”, line 143, in
return (c for c in iterator if id(c) not in self._incompatible_ids)
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\found_candidates.py”, line 47, in _iter_built
candidate = func()
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\factory.py”, line 206, in _make_candidate_from_link
self._link_candidate_cache[link] = LinkCandidate(
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\candidates.py”, line 293, in __init__
super().__init__(
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\candidates.py”, line 156, in __init__
self.dist = self._prepare()
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\candidates.py”, line 225, in _prepare
dist = self._prepare_distribution()
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\candidates.py”, line 304, in _prepare_distribution
return preparer.prepare_linked_requirement(self._ireq, parallel_builds=True)
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\operations\prepare.py”, line 516, in prepare_linked_requirement
return self._prepare_linked_requirement(req, parallel_builds)
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\operations\prepare.py”, line 587, in _prepare_linked_requirement
local_file = unpack_url(
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\operations\prepare.py”, line 166, in unpack_url
file = get_http_url(
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\operations\prepare.py”, line 107, in get_http_url
from_path, content_type = download(link, temp_dir.path)
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\network\download.py”, line 147, in __call__
for chunk in chunks:
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\cli\progress_bars.py”, line 53, in _rich_progress_bar
for chunk in iterable:
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\network\utils.py”, line 63, in response_chunks
for chunk in response.raw.stream(
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 622, in stream
data = self.read(amt=amt, decode_content=decode_content)
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 560, in read
with self._error_catcher():
File “C:\Users\Administrator\AppData\Local\Programs\Python\Python310\lib\contextlib.py”, line 153, in __exit__
self.gen.throw(typ, value, traceback)
File “D:\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 443, in _error_catcher
raise ReadTimeoutError(self._pool, None, “Read timed out.”)
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host=’download.pytorch.org’, port=443): Read timed out.
Traceback (most recent call last):
File “D:\stable-diffusion-webui\launch.py”, line 369, in
prepare_environment()
File “D:\stable-diffusion-webui\launch.py”, line 271, in prepare_environment
run(f'”{python}” -m {torch_command}’, “Installing torch and torchvision”, “Couldn’t install torch”, live=True)
File “D:\stable-diffusion-webui\launch.py”, line 95, in run
raise RuntimeError(f”””{errdesc or ‘Error running command’}.
RuntimeError: Couldn’t install torch.
Command: “D:\stable-diffusion-webui\venv\Scripts\python.exe” -m pip install torch==2.0.1 torchvision==0.15.2 –extra-index-url https://download.pytorch.org/whl/cu118
Error code: 2
It cannot be installed because it cannot download this file
https://download.pytorch.org/whl/cu118/torch-2.0.1%2Bcu118-cp310-cp310-win_amd64.whl
Check your internet connection to see if this file can be accessed with your browser.
Microsoft Windows [版本 10.0.19044.2965]
(c) Microsoft Corporation。保留所有权利。
C:\Users\Administrator>stable-diffusion-webui.\venv\scripts\python.exe -m ensurepip
Looking in links: c:\Users\ADMINI~1\AppData\Local\Temp\tmpcybm_qvh
Requirement already satisfied: setuptools in c:\users\administrator\stable-diffusion-webui\venv\lib\site-packages (63.2.0)
Requirement already satisfied: pip in c:\users\administrator\stable-diffusion-webui\venv\lib\site-packages (23.1.2)
venv “C:\Users\Administrator\stable-diffusion-webui\venv\Scripts\Python.exe”
Python 3.10.6 (tags/v3.10.6:9c7b4bd, Aug 1 2022, 21:38:17) [MSC v.1932 32 bit (Intel)]
Version: v1.2.1
Commit hash: 89f9faa63388756314e8a1d96cf86bf5e0663045
Installing torch and torchvision
Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/cu118
ERROR: Could not find a version that satisfies the requirement torch==2.0.1 (from versions: none)
ERROR: No matching distribution found for torch==2.0.1
Traceback (most recent call last):
File “C:\Users\Administrator\stable-diffusion-webui\launch.py”, line 369, in
prepare_environment()
File “C:\Users\Administrator\stable-diffusion-webui\launch.py”, line 271, in prepare_environment
run(f'”{python}” -m {torch_command}’, “Installing torch and torchvision”, “Couldn’t install torch”, live=True)
File “C:\Users\Administrator\stable-diffusion-webui\launch.py”, line 95, in run
raise RuntimeError(f”””{errdesc or ‘Error running command’}.
RuntimeError: Couldn’t install torch.
Command: “C:\Users\Administrator\stable-diffusion-webui\venv\Scripts\python.exe” -m pip install torch==2.0.1 torchvision==0.15.2 –extra-index-url https://download.pytorch.org/whl/cu118
Error code: 1
what should i do?
Hi,
Have you ever had a working setup on this machine?
You can try:
1. delete the venv folder inside the webui folder, and reurn webui-user.bat
If it still doesn’t work
2. In cmd, inside the webui folder, install pytorch manually
venv\Scripts\python.exe -m pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118 --upgrade --force-reinstall
Thanks for the guide. I followed all the steps but when I clicked ‘webui-user-bat’, this error popped up and the download stopped. What should I do to fix it ?
ERROR: Exception:
Traceback (most recent call last):
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 438, in _error_catcher
yield
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 561, in read
data = self._fp_read(amt) if not fp_closed else b””
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 527, in _fp_read
return self._fp.read(amt) if amt is not None else self._fp.read()
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\cachecontrol\filewrapper.py”, line 90, in read
data = self.__fp.read(amt)
File “C:\Users\dagan\AppData\Local\Programs\Python\Python310\lib\http\client.py”, line 465, in read
s = self.fp.read(amt)
File “C:\Users\dagan\AppData\Local\Programs\Python\Python310\lib\socket.py”, line 705, in readinto
return self._sock.recv_into(b)
File “C:\Users\dagan\AppData\Local\Programs\Python\Python310\lib\ssl.py”, line 1274, in recv_into
return self.read(nbytes, buffer)
File “C:\Users\dagan\AppData\Local\Programs\Python\Python310\lib\ssl.py”, line 1130, in read
return self._sslobj.read(len, buffer)
TimeoutError: The read operation timed out
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\cli\base_command.py”, line 169, in exc_logging_wrapper
status = run_func(*args)
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\cli\req_command.py”, line 248, in wrapper
return func(self, options, args)
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\commands\install.py”, line 377, in run
requirement_set = resolver.resolve(
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\resolver.py”, line 92, in resolve
result = self._result = resolver.resolve(
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\resolvelib\resolvers.py”, line 546, in resolve
state = resolution.resolve(requirements, max_rounds=max_rounds)
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\resolvelib\resolvers.py”, line 397, in resolve
self._add_to_criteria(self.state.criteria, r, parent=None)
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\resolvelib\resolvers.py”, line 173, in _add_to_criteria
if not criterion.candidates:
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\resolvelib\structs.py”, line 156, in __bool__
return bool(self._sequence)
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\found_candidates.py”, line 155, in __bool__
return any(self)
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\found_candidates.py”, line 143, in
return (c for c in iterator if id(c) not in self._incompatible_ids)
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\found_candidates.py”, line 47, in _iter_built
candidate = func()
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\factory.py”, line 206, in _make_candidate_from_link
self._link_candidate_cache[link] = LinkCandidate(
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\candidates.py”, line 293, in __init__
super().__init__(
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\candidates.py”, line 156, in __init__
self.dist = self._prepare()
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\candidates.py”, line 225, in _prepare
dist = self._prepare_distribution()
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\resolution\resolvelib\candidates.py”, line 304, in _prepare_distribution
return preparer.prepare_linked_requirement(self._ireq, parallel_builds=True)
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\operations\prepare.py”, line 516, in prepare_linked_requirement
return self._prepare_linked_requirement(req, parallel_builds)
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\operations\prepare.py”, line 587, in _prepare_linked_requirement
local_file = unpack_url(
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\operations\prepare.py”, line 166, in unpack_url
file = get_http_url(
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\operations\prepare.py”, line 107, in get_http_url
from_path, content_type = download(link, temp_dir.path)
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\network\download.py”, line 147, in __call__
for chunk in chunks:
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\cli\progress_bars.py”, line 53, in _rich_progress_bar
for chunk in iterable:
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_internal\network\utils.py”, line 63, in response_chunks
for chunk in response.raw.stream(
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 622, in stream
data = self.read(amt=amt, decode_content=decode_content)
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 560, in read
with self._error_catcher():
File “C:\Users\dagan\AppData\Local\Programs\Python\Python310\lib\contextlib.py”, line 153, in __exit__
self.gen.throw(typ, value, traceback)
File “C:\Users\dagan\stable-diffusion-webui\venv\lib\site-packages\pip\_vendor\urllib3\response.py”, line 443, in _error_catcher
raise ReadTimeoutError(self._pool, None, “Read timed out.”)
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host=’download.pytorch.org’, port=443): Read timed out.
Traceback (most recent call last):
File “C:\Users\dagan\stable-diffusion-webui\launch.py”, line 369, in
prepare_environment()
File “C:\Users\dagan\stable-diffusion-webui\launch.py”, line 271, in prepare_environment
run(f'”{python}” -m {torch_command}’, “Installing torch and torchvision”, “Couldn’t install torch”, live=True)
File “C:\Users\dagan\stable-diffusion-webui\launch.py”, line 95, in run
raise RuntimeError(f”””{errdesc or ‘Error running command’}.
RuntimeError: Couldn’t install torch.
Command: “C:\Users\dagan\stable-diffusion-webui\venv\Scripts\python.exe” -m pip install torch==2.0.1 torchvision==0.15.2 –extra-index-url https://download.pytorch.org/whl/cu118
Error code: 2
Looks like you have issue connecting to the site that contains the torch packages. Try to try the command stated at the end and visit the url to see if you have access.
Working as a charm ! Thank You !!
venv “C:\Users\user\stable-diffusion-webui\venv\Scripts\Python.exe”
Python 3.10.6 (tags/v3.10.6:9c7b4bd, Aug 1 2022, 21:53:49) [MSC v.1932 64 bit (AMD64)]
Version: v1.2.1
Commit hash: 89f9faa63388756314e8a1d96cf86bf5e0663045
Traceback (most recent call last):
File “C:\Users\user\stable-diffusion-webui\launch.py”, line 369, in
prepare_environment()
File “C:\Users\user\stable-diffusion-webui\launch.py”, line 274, in prepare_environment
run_python(“import torch; assert torch.cuda.is_available(), ‘Torch is not able to use GPU; add –skip-torch-cuda-test to COMMANDLINE_ARGS variable to disable this check'”)
File “C:\Users\user\stable-diffusion-webui\launch.py”, line 135, in run_python
return run(f'”{python}” -c “{code}”‘, desc, errdesc)
File “C:\Users\user\stable-diffusion-webui\launch.py”, line 111, in run
raise RuntimeError(message)
RuntimeError: Error running command.
Command: “C:\Users\user\stable-diffusion-webui\venv\Scripts\python.exe” -c “import torch; assert torch.cuda.is_available(), ‘Torch is not able to use GPU; add –skip-torch-cuda-test to COMMANDLINE_ARGS variable to disable this check'”
Error code: 1
stdout:
stderr: Traceback (most recent call last):
File “”, line 1, in
AssertionError: Torch is not able to use GPU; add –skip-torch-cuda-test to COMMANDLINE_ARGS variable to disable this check
Press any key to continue
i t stop me there what can i do? help please
Hi, does your PC has a discrete Nvidia graphic card? It said it couldn’t find a GPU to use.
Unfortunaly, I have same issues & My PC is not using NVidia Card
sorry bad English
Hi, you need an nvidia card.
Hi Andrew. I did everything step by step till step 5. But I dont have a webui-user.bat datai. but if I search it in the bar I can find it but if I press on it the cmd window pops up but nothing more. It didnt start and there is “press something” and if I press something it closed. Do you know how to get a .bat ?
C:\Users\user>git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.gitCopied!
Cloning into ‘stable-diffusion-webui.gitCopied!’…
remote: Repository not found.
fatal: repository ‘https://github.com/AUTOMATIC1111/stable-diffusion-webui.gitCopied!/’ not found
step 3 worked and now it dosent
dident oast step 5
help please
I have a Webui-user.bat file, but when I double click, the command prompt comes up a “Launch unsuccessful: Exiting
There’s not enough info for me to advise. It would be helpful if you can somehow capture the whole error message.
You can try running webui-user.bat in command prompt to see what it says.
venv “C:\Users\Tom\stable-diffusion-webui\venv\Scripts\Python.exe”
Python 3.10.11 (tags/v3.10.11:7d4cc5a, Apr 5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]
Version: v1.2.1
Commit hash: 89f9faa63388756314e8a1d96cf86bf5e0663045
Installing torch and torchvision
C:\Users\Tom\stable-diffusion-webui\venv\Scripts\python.exe: No module named pip
Traceback (most recent call last):
File “C:\Users\Tom\stable-diffusion-webui\launch.py”, line 369, in
prepare_environment()
File “C:\Users\Tom\stable-diffusion-webui\launch.py”, line 271, in prepare_environment
run(f'”{python}” -m {torch_command}’, “Installing torch and torchvision”, “Couldn’t install torch”, live=True)
File “C:\Users\Tom\stable-diffusion-webui\launch.py”, line 95, in run
raise RuntimeError(f”””{errdesc or ‘Error running command’}.
RuntimeError: Couldn’t install torch.
Command: “C:\Users\Tom\stable-diffusion-webui\venv\Scripts\python.exe” -m pip install torch==2.0.1 torchvision==0.15.2 –extra-index-url https://download.pytorch.org/whl/cu118
Error code: 1
Thats what I got if I want to start the webui-user.bat do you know how to fix this?
The issue is
“C:\Users\Tom\stable-diffusion-webui\venv\Scripts\python.exe: No module named pip”
For some reason pip is missing. You will need to find a way to install it in venv.
Try running this inside stable-diffusion-webui directory:
.\venv\Scripts\python.exe -m ensurepip
hello,andrew.I have the same problem as Tom:File “C:\Users\Tom\stable-diffusion-webui\launch.py”, line 369, in
prepare_environment()
File “C:\Users\Tom\stable-diffusion-webui\launch.py”, line 271, in prepare_environment
run(f’”{python}” -m {torch_command}’, “Installing torch and torchvision”, “Couldn’t install torch”, live=True)
File “C:\Users\Tom\stable-diffusion-webui\launch.py”, line 95, in run
raise RuntimeError(f”””{errdesc or ‘Error running command’}.
RuntimeError: Couldn’t install torch.
Command: “C:\Users\Tom\stable-diffusion-webui\venv\Scripts\python.exe” -m pip install torch==2.0.1 torchvision==0.15.2 –extra-index-url https://download.pytorch.org/whl/cu118
Error code: 1
and I also tried the method you provided, but the problem is still not resolved:Command: “C:\Users\Tom\stable-diffusion-webui\venv\Scripts\python.exe” -m pip install torch==2.0.1 torchvision==0.15.2 –extra-index-url https://download.pytorch.org/whl/cu118
Error code: 1what do I do
Hi, it’s not clear exactly what the problem is. You can try removing all python versions from your PC using Add or Remove Programs, and reinstall python. Delete the webui dir and start all over.
If problem still persist, please post the full error message.
works fine in img2img if I resize to 2048×2048 but not if upscaling 4x. I’m using 2.1 768
Thanks for the great guide.
It’s strange that you need 40GB VRAM for upscaling 4x. R-ESRGAN is a small model. I suspect your settings are incorrect. I have just written an article for upscaling. The first method is AI upscaler. You can try follow.
https://stable-diffusion-art.com/controlnet-upscale/
Hi. Got this up and running today after using easy diffusion for a while.
Getting this error when latent upscaling 2x or 4x with a 4090 :
OutOfMemoryError: CUDA out of memory. Tried to allocate 40.50 GiB (GPU 0; 23.99 GiB total capacity; 12.60 GiB already allocated; 7.54 GiB free; 13.79 GiB reserved in total by PyTorch) If reserved memory is >> allocated memory try setting max_split_size_mb to avoid fragmentation. See documentation for Memory Management and PYTORCH_CUDA_ALLOC_CONF
Time taken: 3m 4.05sTorch active/reserved: 21056/23552 MiB, Sys VRAM: 24564/24564 MiB (100.0%)
and using R-ESRGAN 4x+
OutOfMemoryError: CUDA out of memory. Tried to allocate 9.00 GiB (GPU 0; 23.99 GiB total capacity; 16.18 GiB already allocated; 4.18 GiB free; 16.63 GiB reserved in total by PyTorch) If reserved memory is >> allocated memory try setting max_split_size_mb to avoid fragmentation. See documentation for Memory Management and PYTORCH_CUDA_ALLOC_CONF
Time taken: 40.99sTorch active/reserved: 16572/21600 MiB, Sys VRAM: 24564/24564 MiB (100.0%)
My installed version of Python is 3.11.1 – is this version compatible with Stable Diffusion?
It MAY work but better to stick with 3.10 if you don’t want to troubleshoot unexpected issues.
Never mind
What i’d like to do is how to manually install it on a different drive. Every time I try, it won’t let me change directory away from C
torch.cuda.OutOfMemoryError: CUDA out of memory. Tried to allocate 20.00 MiB (GPU 0; 2.00 GiB total capacity; 1.63 GiB already allocated; 0 bytes free; 1.66 GiB reserved in total by PyTorch) If reserved memory is >> allocated memory try setting max_split_size_mb to avoid fragmentation. See documentation for Memory Management and PYTORCH_CUDA_ALLOC_CONF
I am getting this (Windows 10, NVIDIA GeForceMX450). Can you help me??
Hi, your video card has only 2GB which maybe a bit too low. You can try adding the following arguments
--lowvram --opt-split-attention --always-batch-cond-uncond
I am getting the same error as above, Torch cannot use GPU. I have a Nvidia GEFORCE GT750M 2 GB, running on a windows partition on mac retina with Intel i7 with 16 GB VRAM. Says press anykey to continue and it closes cmd. is this not supported?
That’s a bit too complicated a setup for me to advise…
2 important questions:
1. How to delete the extensions?
2. How to fix slow start up of SD with extensions?
Thank you in advance
The only way I found is to delete the extension’s folder in File Explorer.
Being slow is likely because the extension is programmed to do something. I don’t think we can do much except deleting or disabling them.
Going through the Microsoft store worked. thank you!