fast-xylophone-56613
04/03/2025, 1:22 PMpants export to get a local virtualenv, and it's being created in a directory with the current Python version number, dist/export/python/virtualenvs/python-default/3.9.21/ . I want to have some automation that uses this env, so is there a way I can get the export directory path in a programatic way? Or can I customize it so the output dir won't rely on whatever the current Py version is?elegant-florist-94385
04/03/2025, 1:26 PMdist/export/python/virtualenvs/python-default/*/bin/python
which works if you go through anything that will perform shell expansion.elegant-florist-94385
04/03/2025, 1:26 PMpants run to run anything from the resolve, rather than exporting the venv at all.elegant-florist-94385
04/03/2025, 1:26 PMfast-xylophone-56613
04/03/2025, 1:26 PMfast-xylophone-56613
04/03/2025, 1:27 PMmv dist/export/python/virtualenvs/python-default/* mdist/export/python/virtualenvs/python-default/specific-dirfast-xylophone-56613
04/03/2025, 1:28 PMelegant-florist-94385
04/03/2025, 1:28 PMfast-xylophone-56613
04/03/2025, 1:28 PM* though (I think?)elegant-florist-94385
04/03/2025, 1:29 PMelegant-florist-94385
04/03/2025, 1:29 PMelegant-florist-94385
04/03/2025, 1:30 PMfast-xylophone-56613
04/03/2025, 1:30 PMrm -rf as part of the export script I'm building, we shouldn't ever need more than one at a timeelegant-florist-94385
04/03/2025, 1:31 PM