,

Mapping Kyrgyzstan’s ICT Talent Pipeline: Supply, Demand, and the Gap Between Them

Mapping Kyrgyzstan’s ICT Talent Pipeline: Supply, Demand, and the Gap Between Them

In late 2018, KG Labs commissioned a structured survey of Kyrgyzstan’s ICT education landscape and cross-referenced it against a decade of enterprise registry data from the National Statistics Committee. The research covered fifteen universities offering IT-related programs across the country and ten years of registration records covering all categories of ICT-active businesses from Bishkek to the Batken region. The question driving the work was straightforward: does the education system produce the kind of talent the ICT sector actually needs, and does it produce it in the right places?

The answer that emerged was not a mismatch in numbers — the education system produces well over 500 IT graduates per year across the country, a significant figure by regional standards. The mismatch is structural. The universities training most of those graduates are spread across seven oblasts and two cities; the companies capable of absorbing them are concentrated in one city, mostly operate at the scale of a single person, and are predominantly in retail rather than software production. What follows is a two-part look at both sides of that picture.

At a Glance: The 2018 Numbers

Dimension Supply Side (Education) Demand Side (Enterprises)
Scope of survey 15 universities across Kyrgyzstan National Statistics Committee registry, 2008–2017
Current students (2018) 4,013 undergrad + 307 masters
Graduates produced 2,974 undergrad + 277 masters (cumulative)
Total registered ICT entities 7,522 (as of January 2018)
Growth over 10 years Programs first opened 1996; acceleration post-2009 2,372 (2008) → 7,522 (2017): +217%
Dominant form State universities (9 of 15 surveyed) Individual entrepreneurs: 77.1% of all entities
International certification Only 3 universities: AUCA, KNU, BGU
Bishkek concentration Most large programs in Bishkek; regional programs small 24.8% of entities; 70.6% of software-dev firms
Software development firms specifically 143 entities nationally (2017)
Source: KG Labs 2018 survey of 15 universities (ИТ программы в ВУЗах КР .xlsx) and National Statistics Committee ICT enterprise registry (Нацстатком ГКЭД-3, data as of January 2018). Compiled by KG Labs Public Foundation.

The tension the table captures is specific. Kyrgyzstan’s universities have built a meaningful IT education infrastructure — 15 institutions, dozens of programs, a cumulative pipeline of nearly 3,000 undergraduate graduates since programs began opening in the 1990s. At the same time, the enterprise side of the sector is overwhelmingly informal and geographically concentrated. Over three-quarters of all ICT-registered entities are individual entrepreneurs. Software development firms — the category most directly linked to graduate employment — number just 143 nationally, with nearly all formal small-business activity in that category located in Bishkek.

.kg-map-wrap { font-family: -apple-system, BlinkMacSystemFont, ‘Segoe UI’, sans-serif; background: #F9FAFB; border-radius: 8px; padding: 1.5em; } .kg-map-wrap h3 { margin: 0 0 0.75em; font-size: 1em; font-weight: 600; color: #1D1D1F; letter-spacing: 0.01em; } .kg-map-wrap svg { width: 100%; max-width: 860px; display: block; } .kg-region { cursor: pointer; stroke: #fff; stroke-width: 2; transition: opacity 0.15s; } .kg-region:hover { opacity: 0.82; stroke-width: 3; } .kg-tooltip { position: absolute; background: #1D1D1F; color: #fff; padding: 10px 14px; border-radius: 6px; font-size: 0.82em; pointer-events: none; opacity: 0; transition: opacity 0.15s; max-width: 220px; line-height: 1.5; z-index: 100; } .kg-tooltip strong { display: block; font-size: 1em; margin-bottom: 3px; color: #A1C623; } .kg-tooltip .tt-count { font-size: 1.1em; font-weight: 700; } .kg-legend { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1em; } .kg-legend-item { display: flex; align-items: center; gap: 5px; font-size: 0.78em; color: #555; } .kg-legend-swatch { width: 14px; height: 14px; border-radius: 2px; flex-shrink: 0; } .kg-map-caption { font-size: 0.75em; color: #888; margin-top: 0.75em; }

ICT Entities by Region — Kyrgyzstan 2017

Bishkek Osh Talas Chuy Issyk-Kul Naryn Jalal-Abad Osh Oblast Batken
>1,800 entities
1,000–1,800
700–1,000
400–700
300–400
<300

Source: Нацстатком ГКЭД-3 registry, data as of January 1, 2018. Bishkek city and Osh city are administered separately from their surrounding oblasts. Map is schematic — oblast shapes are approximate.

(function(){ var tipData = { ‘talas’: {name:’Talas Oblast’, count:192, pct:’2.6%’, note:’Smallest regional presence; 9 entities in Talas city software/services’}, ‘chuy’: {name:’Chuy Oblast’, count:1120, pct:’14.9%’, note:’Mixed activity; includes spillover of Bishkek IT firms and logistics’}, ‘bishkek’: {name:’Bishkek City’, count:1862, pct:’24.8%’, note:’71.3% of all small ICT businesses nationally; 70.6% of software dev firms’}, ‘issyk-kul’: {name:’Issyk-Kul Oblast’, count:524, pct:’7.0%’, note:’Tourism-adjacent IT retail; individual entrepreneurs dominant’}, ‘naryn’: {name:’Naryn Oblast’, count:471, pct:’6.3%’, note:’Lowest formal sector presence; mostly individual entrepreneurs’}, ‘jalal-abad’: {name:’Jalal-Abad Oblast’, count:490, pct:’6.5%’, note:’Retail-dominant; limited formal sector presence’}, ‘osh-oblast’: {name:’Osh Oblast’, count:1231, pct:’16.4%’, note:’Predominantly individual entrepreneurs; retail and informal services’}, ‘osh-city’: {name:’Osh City’, count:845, pct:’11.2%’, note:’1 software dev firm; 75 wireless telecom entities’}, ‘batken’: {name:’Batken Oblast’, count:787, pct:’10.5%’, note:’Overwhelmingly individual entrepreneurs; border trade context’} }; var tip = document.getElementById(‘kg-map-tooltip’); var wrap = tip ? tip.parentElement : null; if (!tip || !wrap) return; var wrapRect; document.querySelectorAll(‘.kg-region[data-region]’).forEach(function(el){ el.addEventListener(‘mouseenter’, function(e){ var r = el.getAttribute(‘data-region’); var d = tipData[r]; if (!d) return; tip.innerHTML = ‘‘ + d.name + ‘‘ + ‘‘ + d.count.toLocaleString() + ‘ entities  (‘ + d.pct + ‘ of national total)
‘ + ‘‘ + d.note + ‘‘; tip.style.opacity = ‘1’; }); el.addEventListener(‘mousemove’, function(e){ wrapRect = wrap.getBoundingClientRect(); var x = e.clientX — wrapRect.left + 12; var y = e.clientY — wrapRect.top — 10; if (x + 230 > wrapRect.width) x = x — 244; tip.style.left = x + ‘px’; tip.style.top = y + ‘px’; }); el.addEventListener(‘mouseleave’, function(){ tip.style.opacity = ‘0’; }); }); })();

Two Stories, Two Datasets

The research splits into two parts. The first examines the education landscape in detail: which institutions are teaching what, how enrollment has grown and in which programs, where the gender gaps and concentrations appear, and what the certification infrastructure actually looks like when you map it university by university. The second examines the enterprise registry: ten years of Natsstatkom data disaggregated by sector, business size, and region — and what those numbers reveal about the structure of ICT employment demand and its geographic distribution.

Story 1: Fifteen Universities, Four Thousand Students

A university-by-university account of what IT education in Kyrgyzstan actually looks like in 2018 — who is enrolling, in which programs, with what regional distribution, and where the gender picture diverges most sharply from what might be expected.

Read: The IT Education Landscape →

Story 2: An Industry of Individuals

A decade of National Statistics Committee data on ICT-registered businesses, disaggregated by sector, size, and region — and what the structure of that data reveals about where formal employment capacity in Kyrgyzstan’s digital economy actually sits.

Read: What the Enterprise Registry Reveals →

Research conducted October 2018. Data: KG Labs survey of 15 Kyrgyz universities; National Statistics Committee ICT enterprise registry 2008–2017. Part of KG Labs’ ongoing work to map the Kyrgyz technology and startup ecosystem.

Work With Us

Ready to Go Deeper?

Whether you need expert input, research support, a project partner, or simply a conversation — KG Labs is here.