# pypi **Repository Path**: open_source_official_website/pypi ## Basic Information - **Project Name**: pypi - **Description**: kcwapi是一个由kcwebs抽象出来的超轻量级http框架 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-02-07 - **Last Updated**: 2026-06-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #### windows ssh服务 下载并安装 [OpenSSH-Win64-v10.0.0.0.msi](https://raw.giteeusercontent.com/open_source_official_website/pypi/raw/master/OpenSSH-Win64-v10.0.0.0.msi) ### 执行以下命令开启服务 sc start sshd ### 执行以下命令设开机启动 sc config sshd start= auto ### 修改防火墙设置以允许SSH流量(默认端口是22) netsh advfirewall firewall add rule name="OpenSSH Server (sshd)" dir=in action=allow service=OpenSSH protocol=TCP ### 可以通过修改C:\ProgramData\ssh\sshd_config文件来自定义SSH服务器的配置,例如设置密码认证、端口号等