Patch for shutil.which
and shutilwhich
that doesn't prepend CWD in search on Windows.
conda install -c defaults -c conda-forge shutilwhich-cwdpatch
or
pip install shutilwhich-cwdpatch
Simply import patch
submodule before importing shutil.which
or shutilwhich
to patch them:
import shutilwhich_cwdpatch.patch
from shutil import which
Or use which
without patching:
from shutilwhich_cwdpatch import which