changhefirst

Results 4 comments of changhefirst

Do not upgrade python to 3.9, stay 3.5, but only upgrade the pip to 19.0.1, then comment all the 'pip_install' phases. (should two places, search all the codes.) The codes...

I have the same errors. When 2023/02/08, the code run almost well, with auto1111 master branch and SD1.5 model, only SD2.1 512 model did not work. But when 02/10, it...

After reading this post : [https://www.reddit.com/r/StableDiffusion/comments/10yurxl/help_with_error_please/](https://www.reddit.com/r/StableDiffusion/comments/10yurxl/help_with_error_please/) I changed codes in "Setup environment" cell, added "fastapi==0.90.1": `install_script = f""" eval "$({conda_bin} shell.bash hook)" cd stable-diffusion-webui python3 -m pip install --upgrade tensorrt...

因为作者并没有使用秋叶整合包。在install.bat这个安装脚本中,作者检测了是不是使用comfyui的win protable整合包,如果不是它的那个目录结构,就会默认使用系统的python环境来安装。而秋叶整合包默认使用了SD-Launcher这个python虚拟环境,所以虽然显示安装成功,但实际上秋叶的环境看不到。所以,把install.bat删成这样: `@echo off set "requirements_txt=%~dp0\requirements.txt" set "python_exec=python" echo Installing ComfyUI's Sound lab Nodes.. REM 调用 python_exec 并获取版本信息 for /f "tokens=*" %%i in ('%python_exec% --version') do set PYTHON_VERSION=%%i REM 显示...