These briefs are the first writing sprint from planning/p0-content-queue.md. Each brief must become a Korean and English post with the same translation_id.
python-pip-install-failedpip install failedpip install ... and needs a fast diagnosis path.Python pip install 실패 해결 방법How to Fix pip install Failed in Python/images/header_images/overlay_image_python.pngko_Troubleshooting / en_TroubleshootingPython, pip, PackageInstall, VirtualEnvironmentRequired sections:
ERROR: Could not find a version that satisfies the requirement, Failed building wheel, and permission errors.py -m pip --version
py -m pip install --upgrade pip setuptools wheel
py -m pip install package-name
python3 -m pip --version
python3 -m pip install --upgrade pip setuptools wheel
python3 -m pip install package-name
python -m pip show package-name.pip from another interpreter, installing globally while running venv Python, copying smart quotes from a blog.Internal links to add:
_posts/en/2025-07-30-python-modulenotfounderror.md_posts/en/2025-07-23-python-modulenotfounderror-no-module-named.md_posts/en/2025-08-05-python-permissionerror-errno-13-permission-denied.mdAd notes:
python-no-module-named-pipNo module named pippython -m pip fails.Python No module named pip 오류 해결 방법How to Fix No module named pip/images/header_images/overlay_image_python.pngko_Troubleshooting / en_TroubleshootingPython, pip, ensurepip, EnvironmentRequired sections:
No module named pip and explain why plain pip can be misleading.ensurepip.python -m ensurepip --upgrade
python -m pip install --upgrade pip
python -m pip --version
py -m ensurepip --upgrade
py -m pip install --upgrade pip
python -m pip --version points to the expected Python directory.python -m pip in posts.Internal links to add:
_posts/en/2025-07-30-python-modulenotfounderror.md_posts/en/2025-08-05-python-notadirectoryerror-errno-20-not-a-directory.md_posts/en/2025-08-05-python-permissionerror-errno-13-permission-denied.mdAd notes:
python-venv-not-activatingpython venv not activatingPython venv가 활성화되지 않을 때 해결 방법Python venv Not Activating: How to Fix It/images/header_images/overlay_image_python.pngko_Troubleshooting / en_TroubleshootingPython, venv, PowerShell, VirtualEnvironmentRequired sections:
.\.venv\Scripts\Activate.ps1
.venv\Scripts\activate.bat
source .venv/bin/activate
Set-ExecutionPolicy -Scope CurrentUser RemoteSigned
python -c "import sys; print(sys.executable)"
Internal links to add:
_posts/en/2025-08-05-python-permissionerror-errno-13-permission-denied.md_posts/en/2025-07-30-python-modulenotfounderror.md_posts/en/2025-08-05-python-systemerror-returned-null-without-setting-error.mdAd notes:
python-command-not-found-windowspython command not found windowsWindows에서 python 명령어가 안 될 때 해결 방법Python Command Not Found on Windows: How to Fix It/images/header_images/overlay_image_python.pngko_Troubleshooting / en_TroubleshootingPython, Windows, PATH, pyRequired sections:
python is not recognized, Microsoft Store alias behavior, and py launcher.py --version first.py --version
py -0p
where python
where py
py -m pip --version
python --version
pip before confirming interpreter.Internal links to add:
_posts/en/2025-07-30-python-modulenotfounderror.md_posts/en/2025-08-05-python-permissionerror-errno-13-permission-denied.md_posts/en/2025-08-05-python-timeouterror-winerror-10060.mdAd notes:
py --version quick check is shown.python-externally-managed-environmentexternally-managed-environmentPython externally-managed-environment 오류 해결 방법How to Fix externally-managed-environment in Python/images/header_images/overlay_image_python.pngko_Troubleshooting / en_TroubleshootingPython, pip, venv, LinuxRequired sections:
python3 -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install package-name
pipx for CLI tools; use package manager for system packages.--break-system-packages only as a last resort and explain risk.which python, python -m pip --version, and package import.Internal links to add:
_posts/en/2025-07-30-python-modulenotfounderror.md_posts/en/2025-08-05-python-permissionerror-errno-13-permission-denied.md_posts/en/2025-08-05-python-notadirectoryerror-errno-20-not-a-directory.mdAd notes:
javascript-npm-err-eresolvenpm ERR ERESOLVEnpm ERR! ERESOLVE 오류 해결 방법How to Fix npm ERR ERESOLVE/images/header_images/overlay_image_js.pngko_Troubleshooting / en_TroubleshootingJavaScript, npm, Dependency, NodejsRequired sections:
ERESOLVE unable to resolve dependency tree.node -v
npm -v
npm explain package-name
rm -rf node_modules package-lock.json
npm install
Add Windows PowerShell equivalent.
--legacy-peer-deps is acceptable and what it hides.npm run build.Internal links to add:
_posts/en/2025-08-01-javascript-failed-to-fetch.md_posts/en/2025-08-05-javascript-variables-var-vs-let-vs-const.md_posts/en/2025-08-05-javascript-promise-all-vs-promise-race.mdAd notes:
node-cannot-find-moduleCannot find module nodeNode.js Cannot find module 오류 해결 방법Fix Cannot Find Module in Node.js/images/header_images/overlay_image_js.pngko_Troubleshooting / en_TroubleshootingJavaScript, Nodejs, npm, ModulesRequired sections:
Error: Cannot find module '...'.npm install package-name
npm ls package-name
node -p "process.cwd()"
./utils/file.js vs utils/file.js.type: module, file extensions, import vs require.Internal links to add:
_posts/en/2025-07-30-javascript-uncaught-referenceerror-is-not-defined.md_posts/en/2025-07-31-javascript-typeerror-is-not-a-function.md_posts/en/2025-08-05-javascript-jquery-is-not-defined.mdAd notes:
typescript-cannot-find-nameTypeScript Cannot find nameTypeScript Cannot find name 오류 해결 방법Fix TypeScript Cannot Find Name/images/header_images/overlay_image_js.pngko_Troubleshooting / en_TroubleshootingTypeScript, JavaScript, tsconfig, TypesRequired sections:
TS2304: Cannot find name.lib, wrong types, typo, test environment globals.@types/....npm install -D @types/node
{
"compilerOptions": {
"types": ["node"]
}
}
document, process, Buffer.npx tsc --noEmit.any, suppressing with // @ts-ignore, editing the wrong tsconfig.Internal links to add:
_posts/en/2025-07-30-javascript-uncaught-referenceerror-is-not-defined.md_posts/en/2025-08-05-javascript-variables-var-vs-let-vs-const.md_posts/en/2025-08-05-javascript-innerhtml-vs-textcontent.mdAd notes:
typescript-property-does-not-existProperty does not exist on typeTypeScript Property does not exist on type 오류 해결 방법Fix Property Does Not Exist on Type/images/header_images/overlay_image_js.pngko_Troubleshooting / en_TroubleshootingTypeScript, Types, Interface, JavaScriptRequired sections:
TS2339: Property 'x' does not exist on type.type User = { id: number; name: string };
if ("email" in user) {
console.log(user.email);
}
as any as a default answer.npx tsc --noEmit.Internal links to add:
_posts/en/2025-07-30-javascript-typeerror-cannot-read-properties-of-null.md_posts/en/2025-07-30-javascript-uncaught-typeerror-cannot-read-properties-of-undefined.md_posts/en/2025-08-05-javascript-innerhtml-vs-textcontent.mdAd notes:
typescript-tsconfig-paths-not-workingtsconfig paths not workingtsconfig paths가 동작하지 않을 때 해결 방법tsconfig Paths Not Working: How to Fix Path Aliases/images/header_images/overlay_image_js.pngko_Troubleshooting / en_TroubleshootingTypeScript, tsconfig, Vite, NodejsRequired sections:
@/components/Button fail.baseUrl, wrong paths, runtime bundler not configured, test runner not configured, Node does not understand TS paths by itself.{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
}
}
vite.config.ts.tsconfig-paths, bundling, or relative imports.npx tsc --noEmit plus app/test command.tsconfig.json while framework uses tsconfig.app.json.Internal links to add:
_posts/en/2025-08-05-javascript-jquery-is-not-defined.md_posts/en/2025-08-05-javascript-variables-var-vs-let-vs-const.md_posts/en/2025-07-31-javascript-typeerror-is-not-a-function.mdAd notes: