How do I set, temporarily, the PYTHONPATH environment variable just before executing a Python script?
In *nix, I can do this:
$ PYTHONPATH=\'.\' pyth
You use SET on Windows:
SET
SET PYTHONPATH=. python scripts/doit.py