Consider two packages: x.y.z
and x.y.w
Suppose I already have x.y.z
installed via pip
and I am testing x.y.w
locally.
It seems that if I try to run import x.y.z
it will fail with the error No module named x.y.z
even though it's installed. If I switch directory, I can import it just fine, but then I won't have x.y.w
. Is there any way to have both importable?