Solving network problems during kimi-cc installation
If a network error such as "Could not resolve host" occurs when installing Kimi-cc, you can follow the steps below to troubleshoot and resolve the problem:
- Inspection of the underlying network environment: Ensure that the terminal can access GitHub normally (ping github.com), if it fails, you need to adjust the DNS settings or switch the network
- Accelerating with proxies: Set HTTP proxy via environment variable (e.g. export HTTP_PROXY=http://your_proxy:port)
- Manual Download Script: Download and install the script locally before executing it:
curl -o install.sh https://raw.githubusercontent.com/LLM-Red-Team/kimi-cc/main/install.sh
chmod +x install.sh
. /install.sh - Replacement of mounting source: If GitHub is difficult to access, try the Gitee mirror source (you need to check if the project has an official mirror)
If the problem remains unresolved:
- Check project ISSUES (e.g. #28 mentions network issues) for community solutions
- Check if your system firewall/security software is blocking curl access
- Experiment with alternative network environments such as mobile hotspots
This answer comes from the articleKimi CC: An Open Source Tool for Driving Claude Code with Kimi ModelsThe































