upyter-server 1.13.5 requires pywinpty<2; os_name == "nt", but you have pywinpty 2.0.10 which is incompatible
时间: 2023-05-17 19:07:56 浏览: 599
这是一个典型的依赖冲突问题,您需要卸载 pywinpty 2.0.10 并安装 pywinpty<2 版本来解决这个问题。您可以使用 pip uninstall pywinpty 命令卸载当前版本,然后使用 pip install pywinpty<2 命令安装旧版本。
相关问题
nginx: [emerg] invalid host in upstream "182.119.221.52:8080/ret-pb/" in D:\software\nginx-1.13.5/conf/nginx.conf:39
这个错误是因为在你的nginx配置文件中,upstream指令中的主机地址不正确。在你的配置文件的第39行,你设置了一个名为"182.119.221.52:8080/ret-pb/"的upstream块,但是这个地址不符合upstream指令的格式要求。
upstream指令应该像这样设置:
```
upstream backend {
server 182.119.221.52:8080;
}
```
请尝试修改你的配置文件,将upstream指令改为正确的格式。如果仍然遇到问题,请提供完整的nginx配置文件以便我更好地帮助你。
阅读全文