Message408494
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' |
|
Date |
User |
Action |
Args |
2021-12-13 23:05:58 | nedbat | set | recipients:
+ nedbat, vinay.sajip, christian.heimes, steve.dower, pablogsal, saaketp |
2021-12-13 23:05:58 | nedbat | set | messageid: <1639436758.52.0.926720041511.issue46028@roundup.psfhosted.org> |
2021-12-13 23:05:58 | nedbat | link | issue46028 messages |
2021-12-13 23:05:58 | nedbat | create | |
|