I did that in order to load python 3 (instead of the default python 2 my comp was using) but now I want to import a module from my file system.
Something like:
from FILE import FUNCTION
but I cannot do that unless
a) my working directory is where the FILE is being held (something I cannot do since there are multiple files all over my system
b) change my python path so that it knows so search along those paths for said FILE.
I'm looking to set up the latter.