We are working on writing some modules and centralizing them on our local network.
As suggested here: Import from network
I altered my PYTHONPATH to point to the network location.
Problem is that when I run the python shell, import and do: print my_mod.__file__
it's still pointing to my local directory.
Is there any way to import from the network location instead of locally, but keeping both links so I can work on the local?
Thanks!