virtualenv fails with Python 3.5 on Windows · Issue #796 · pypa/virtualenv (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Description
- Install Python 3.5 using the official Windows installer
- Get a shell
- python -m ensurepip (because the installer didn't install pip for me for some reason)
- python -m pip install virtualenv (gets me version 13.1.2)
- python -m virtualenv env
I expect: a virtualenv in ./env
I get: a GUI error dialog saying "The program can't start because VCRUNTIME140.dll is missing from your computer."
Apparently virtualenv needs to copy vcruntime140.dll into the new virtualenv for Python 3.5 to work on Windows.
Originally filed at http://bugs.python.org/issue25119