Hey there :slightly_smiling_face: is there a pants...
# general
p
Hey there 🙂 is there a pants command to create a sandbox? so for example when i do
pants run path/to/file.py
it figures out dependencies, and creates a sandbox where this file is run; can I do this explicitely through a pants command?
f
No, they're a "side effect" of running `Process`es but you can make Pants not delete them with
--keep-sandboxes=always
🙏 1
p
You can also export a virtualenv that includes everything in a resolve, and use that to run things outside of pants:
pants export --resolve=...
🙏 1