deepfacelab中文网

 找回密码
 立即注册(仅限QQ邮箱)
12
返回列表 发新帖
楼主: happylive

应网友需要LivePortrait V2版本和LivePortrait V3升级包

[复制链接]

13

主题

51

帖子

2211

积分

初级丹圣

Rank: 8Rank: 8

积分
2211
 楼主| 发表于 2024-8-29 22:18:59 | 显示全部楼层
曼曼 发表于 2024-8-29 19:49
启动后页面显示404 Not Found,怎么办呢?

如果你v3不能用,就用v2,功能差距不大,如果是因为版本问题的话
回复 支持 反对

使用道具 举报

1

主题

146

帖子

810

积分

高级丹师

Rank: 5Rank: 5

积分
810

万事如意节日勋章

发表于 2024-8-30 11:33:56 | 显示全部楼层
happylive 发表于 2024-8-29 22:18
如果你v3不能用,就用v2,功能差距不大,如果是因为版本问题的话

谢谢大神指导!解压后直接拷到E盘的,用的V2,没有用代理,还是弹出404 Not Found。
回复 支持 反对

使用道具 举报

1

主题

146

帖子

810

积分

高级丹师

Rank: 5Rank: 5

积分
810

万事如意节日勋章

发表于 2024-8-30 11:42:52 | 显示全部楼层
曼曼 发表于 2024-8-30 11:33
谢谢大神指导!解压后直接拷到E盘的,用的V2,没有用代理,还是弹出404 Not Found。 ...

Activating the LivePortrait environment...
Environment activated successfully.
Starting the server...
Waiting for the server to start...
Checking if the server is listening on port 8890...
Server is up and running on http://127.0.0.1:8890
Server is running. Press Ctrl+C to stop.
[11:30:34] Load appearance_feature_extractor from                                            live_portrait_wrapper.py:46
           E:\LivePortrait-aibl-v20240806\LivePortrait-aibl-v20240806\pretrained_weights\liv
           eportrait\base_models\appearance_feature_extractor.pth done.
[11:30:37] Load motion_extractor from                                                        live_portrait_wrapper.py:49
           E:\LivePortrait-aibl-v20240806\LivePortrait-aibl-v20240806\pretrained_weights\liv
           eportrait\base_models\motion_extractor.pth done.
[11:30:42] Load warping_module from                                                          live_portrait_wrapper.py:52
           E:\LivePortrait-aibl-v20240806\LivePortrait-aibl-v20240806\pretrained_weights\liv
           eportrait\base_models\warping_module.pth done.
[11:30:49] Load spade_generator from                                                         live_portrait_wrapper.py:55
           E:\LivePortrait-aibl-v20240806\LivePortrait-aibl-v20240806\pretrained_weights\liv
           eportrait\base_models\spade_generator.pth done.
           Load stitching_retargeting_module from                                            live_portrait_wrapper.py:59
           E:\LivePortrait-aibl-v20240806\LivePortrait-aibl-v20240806\pretrained_weights\liv
           eportrait\retargeting_models\stitching_retargeting_module.pth done.
[11:31:25] FaceAnalysisDIY warmup time: 10.995s                                                  face_analysis_diy.py:79
[11:31:29] LandmarkRunner warmup time: 1.240s                                                human_landmark_runner.py:95
ERROR:    [Errno 10048] error while attempting to bind on address ('127.0.0.1', 8890): 通常每个套接字地址(协议/网络地址/端口)只允许使用一次。
Traceback (most recent call last):
  File "E:\LivePortrait-aibl-v20240806\LivePortrait-aibl-v20240806\app.py", line 444, in <module>
    demo.launch(
  File "E:\LivePortrait-aibl-v20240806\LivePortrait-aibl-v20240806\LivePortrait_env\lib\site-packages\gradio\blocks.py", line 2327, in launch
    ) = http_server.start_server(
  File "E:\LivePortrait-aibl-v20240806\LivePortrait-aibl-v20240806\LivePortrait_env\lib\site-packages\gradio\http_server.py", line 154, in start_server
    raise OSError(
OSError: Cannot find empty port in range: 8890-8890. You can specify a different port by setting the GRADIO_SERVER_PORT environment variable or passing the `server_port` parameter to `launch()`.

回复 支持 反对

使用道具 举报

13

主题

51

帖子

2211

积分

初级丹圣

Rank: 8Rank: 8

积分
2211
 楼主| 发表于 2024-8-31 17:45:05 | 显示全部楼层
曼曼 发表于 2024-8-30 11:42
Activating the LivePortrait environment...
Environment activated successfully.
Starting the server ...

出现这个错误的原因是端口8890已经被其他进程占用了,无法启动LivePortrait服务器。解决方法如下:

1.检查是否有其他进程正在使用端口8890。在Windows上可以使用命令netstat -ano | findstr :8890查找,在macOS或Linux上可以使用lsof -i :8890。
2.如果找到占用端口的进程,可以尝试终止该进程。在Windows上可以使用任务管理器,在macOS或Linux上可以使用kill命令。
3.如果无法终止占用端口的进程,可以尝试指定一个不同的端口号来启动LivePortrait服务器。可以通过设置环境变量GRADIO_SERVER_PORT或在启动代码中传入server_port参数来实现,例如:
python
demo.launch(server_port=8891)
4.如果以上步骤都无法解决,可以尝试重启系统,有时这可以解决与端口和系统资源相关的冲突。
5.检查您的防病毒软件或防火墙是否对LivePortrait服务器的端口监听产生了影响。
回复 支持 反对

使用道具 举报

13

主题

51

帖子

2211

积分

初级丹圣

Rank: 8Rank: 8

积分
2211
 楼主| 发表于 2024-8-31 17:55:49 | 显示全部楼层
曼曼 发表于 2024-8-30 11:42
Activating the LivePortrait environment...
Environment activated successfully.
Starting the server ...

文件夹名字千万不能是中文,关闭杀毒软件和防火墙

然后代码显示你的8890端口被占用了,如果你感觉其他办法处理麻烦,你百度一个免费的软件(这个软件主要是检测和搜索你端口被什么占用)叫做:Process Hacker
回复 支持 反对

使用道具 举报

3

主题

182

帖子

1527

积分

初级丹圣

Rank: 8Rank: 8

积分
1527
发表于 2024-9-13 22:55:27 | 显示全部楼层
表情包哪里可以下载?
回复 支持 反对

使用道具 举报

14

主题

141

帖子

2761

积分

初级丹圣

Rank: 8Rank: 8

积分
2761

万事如意节日勋章

发表于 2024-10-28 16:54:59 | 显示全部楼层
一直重复Checking if the server is listening on port 8890...
Server not ready, waiting 4 seconds...
回复 支持 反对

使用道具 举报

4

主题

35

帖子

231

积分

初级丹师

Rank: 3Rank: 3

积分
231
发表于 2024-11-5 20:50:42 | 显示全部楼层
Activating the LivePortrait environment...
Environment activated successfully.
Starting the server...
Waiting for the server to start...
[20:44:24] Load appearance_feature_extractor from                                            live_portrait_wrapper.py:46
           E:\LivePortrait-aibl-v20240806\pretrained_weights\liveportrait\base_models\appear
           ance_feature_extractor.pth done.
           Load motion_extractor from                                                        live_portrait_wrapper.py:49
           E:\LivePortrait-aibl-v20240806\pretrained_weights\liveportrait\base_models\motion
           _extractor.pth done.
           Load warping_module from                                                          live_portrait_wrapper.py:52
           E:\LivePortrait-aibl-v20240806\pretrained_weights\liveportrait\base_models\warpin
           g_module.pth done.
           Load spade_generator from                                                         live_portrait_wrapper.py:55
           E:\LivePortrait-aibl-v20240806\pretrained_weights\liveportrait\base_models\spade_
           generator.pth done.
           Load stitching_retargeting_module from                                            live_portrait_wrapper.py:59
           E:\LivePortrait-aibl-v20240806\pretrained_weights\liveportrait\retargeting_models
           \stitching_retargeting_module.pth done.
Checking if the server is listening on port 8890...
Server not ready, waiting 4 seconds...
[20:44:28] FaceAnalysisDIY warmup time: 1.661s                                                   face_analysis_diy.py:79
[20:44:29] LandmarkRunner warmup time: 0.506s                                                human_landmark_runner.py:95
Checking if the server is listening on port 8890...
E:\LivePortrait-aibl-v20240806\LivePortrait_env\lib\site-packages\gradio\analytics.py:106: UserWarning: IMPORTANT: You are using gradio version 4.37.1, however version 4.44.1 is available, please upgrade.
--------
  warnings.warn(
Server not ready, waiting 4 seconds...
Running on local URL:  http://127.0.0.1:8890

To create a public link, set `share=True` in `launch()`.
Checking if the server is listening on port 8890...
Server is up and running on http://127.0.0.1:8890
Server is running. Press Ctrl+C to stop.
Exception in callback _ProactorBasePipeTransport._call_connection_lost(None)
handle: <Handle _ProactorBasePipeTransport._call_connection_lost(None)>
Traceback (most recent call last):
  File "E:\LivePortrait-aibl-v20240806\LivePortrait_env\lib\asyncio\events.py", line 80, in _run
    self._context.run(self._callback, *self._args)
  File "E:\LivePortrait-aibl-v20240806\LivePortrait_env\lib\asyncio\proactor_events.py", line 162, in _call_connection_lost
    self._sock.shutdown(socket.SHUT_RDWR)
ConnectionResetError: [WinError 10054] 远程主机强迫关闭了一个现有的连接。
Exception in callback _ProactorBasePipeTransport._call_connection_lost(None)
handle: <Handle _ProactorBasePipeTransport._call_connection_lost(None)>
Traceback (most recent call last):
  File "E:\LivePortrait-aibl-v20240806\LivePortrait_env\lib\asyncio\events.py", line 80, in _run
    self._context.run(self._callback, *self._args)
  File "E:\LivePortrait-aibl-v20240806\LivePortrait_env\lib\asyncio\proactor_events.py", line 162, in _call_connection_lost
    self._sock.shutdown(socket.SHUT_RDWR)
ConnectionResetError: [WinError 10054] 远程主机强迫关闭了一个现有的连接。
Exception in callback _ProactorBasePipeTransport._call_connection_lost(None)
handle: <Handle _ProactorBasePipeTransport._call_connection_lost(None)>
Traceback (most recent call last):
  File "E:\LivePortrait-aibl-v20240806\LivePortrait_env\lib\asyncio\events.py", line 80, in _run
    self._context.run(self._callback, *self._args)
  File "E:\LivePortrait-aibl-v20240806\LivePortrait_env\lib\asyncio\proactor_events.py", line 162, in _call_connection_lost
    self._sock.shutdown(socket.SHUT_RDWR)
ConnectionResetError: [WinError 10054] 远程主机强迫关闭了一个现有的连接。
回复 支持 反对

使用道具 举报

4

主题

35

帖子

231

积分

初级丹师

Rank: 3Rank: 3

积分
231
发表于 2024-11-5 21:01:05 | 显示全部楼层
这段日志显示了一个错误,具体来说是一个连接重置错误(ConnectionResetError),这通常意味着远程主机(在这个案例中可能是你的服务器)突然关闭了连接。下面是错误日志的详细解释以及可能的解决方法:

错误解释:

ConnectionResetError: [WinError 10054] 远程主机强迫关闭了一个现有的连接。
这个错误表明服务器在处理请求时突然断开了连接。这可能是因为服务器遇到了内部错误、资源耗尽,或者请求超时。
解决方法:

检查服务器日志:查看服务器日志文件,以确定错误的具体原因。错误日志可能会提供有关错误发生时服务器状态的详细信息。
资源监控:检查服务器的CPU、内存和磁盘使用情况,确保没有资源耗尽的情况。
代码审查:如果服务器是自定义的,检查最近的代码更改,看看是否有可能导致连接问题的修改。
超时设置:检查服务器的超时设置,确保它们不是设置得太低,这可能导致服务器在处理请求时过早关闭连接。
网络问题:检查网络连接是否稳定,有时候网络波动也会导致连接问题。
升级Gradio:日志中提到Gradio版本可能不是最新版,尝试升级到最新版可能有助于解决问题。
以下是具体的步骤:

步骤1:查看服务器的错误日志,以获取更多关于错误发生时服务器的信息。
步骤2:使用以下命令升级Gradio:
Bash
复制
pip install --upgrade gradio
步骤3:检查服务器配置,确保超时设置合理,且服务器资源(如内存和CPU)没有被过度使用。
步骤4:如果服务器是自定义的,回顾最近的代码更改,看看是否有可能导致连接问题的修改。
步骤5:如果问题仍然存在,尝试重启服务器,有时这可以解决临时性的连接问题。
遵循这些步骤后,应该能够解决服务器连接问题。如果问题依旧,可能需要更深入地调查服务器的具体配置和运行环境。
回复 支持 反对

使用道具 举报

4

主题

35

帖子

231

积分

初级丹师

Rank: 3Rank: 3

积分
231
发表于 2024-11-5 21:04:17 | 显示全部楼层
看不懂这说的是什么,刚解压那会还能玩,用了两次就不行了,全部删除重新解压出来也用不了,求楼主解惑
回复 支持 反对

使用道具 举报

QQ|Archiver|手机版|deepfacelab中文网 |网站地图

GMT+8, 2024-12-4 01:07 , Processed in 0.127182 second(s), 33 queries .

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表