-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpip.conf
More file actions
26 lines (19 loc) · 716 Bytes
/
pip.conf
File metadata and controls
26 lines (19 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# pip configuration for privacy and telemetry opt-out
# This file disables all telemetry, tracking, and analytics features in pip
[global]
# Disable pip version check (prevents phone-home to PyPI)
disable-pip-version-check = true
# Disable telemetry and tracking
no-input = true
# Do not collect or send usage statistics
no-analytics = true
# Timeout for network operations (fail fast instead of hanging)
timeout = 15
# Use only trusted hosts (no telemetry beacons)
# trusted-host is intentionally not set to avoid security issues
[install]
# Disable progress bars (reduces noise, no tracking)
no-progress-bar = true
[list]
# Disable warnings about outdated packages (no phone-home check)
not-required = true