📦 Installation Guide
Get HTTP File Runner installed on your system in seconds
🔧 Troubleshooting
Command not found after installation
If you get a "command not found" error after installation:
- Restart your terminal/command prompt
- Check if the installation directory is in your PATH
- For Linux/macOS, add to your shell profile:
export PATH="$PATH:/path/to/httprunner"
- For Windows, check "Environment Variables" in System Properties
Permission denied errors
If you encounter permission errors:
- Linux/macOS: Try installing to a user directory:
INSTALL_DIR=$HOME/.local/bin
- Windows: Run PowerShell as Administrator or install to a user directory
Download failures
If downloads fail:
- Check your internet connection
- Try the manual download method
- Check if your firewall or proxy is blocking the download
✅ Verify Installation
After installation, verify that httprunner is working correctly:
# Check version
httprunner --version
# Show help
httprunner --help
# Test with a simple request
echo "GET https://httpbin.org/get" > test.http
httprunner test.http