This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author nedbat
Recipients christian.heimes, nedbat, pablogsal, saaketp, steve.dower, vinay.sajip
Date 2021-12-13.23:05:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1639436758.52.0.926720041511.issue46028@roundup.psfhosted.org>
In-reply-to
Content
Demonstration of a problem with only stdlib, and no undocumented features. This is on a Mac:

This works:

$ python3.10 -V
Python 3.10.0

$ python3.10 -m venv v310

$ v310/bin/python -m venv v310-nested

$ v310-nested/bin/python -V
Python 3.10.0

This does not work:

$ python3.11 -V
Python 3.11.0a3

$ python3.11 -m venv v311

$ v311/bin/python -m venv 311-nested
Error: [Errno 2] No such file or directory: '/private/tmp/bpo-46028/311-nested/bin/python'
History
Date User Action Args
2021-12-13 23:05:58nedbatsetrecipients: + nedbat, vinay.sajip, christian.heimes, steve.dower, pablogsal, saaketp
2021-12-13 23:05:58nedbatsetmessageid: <1639436758.52.0.926720041511.issue46028@roundup.psfhosted.org>
2021-12-13 23:05:58nedbatlinkissue46028 messages
2021-12-13 23:05:58nedbatcreate