I have a very basic issue with my Python 3.4 install on MAC OSX 10.11.4. I have set my PYTHONPATH in my .bash_profile and the paths are found when running python from the terminal, and if I import sys and inspect sys.path in the terminal I see my expected paths.
However, when I load IDLE and look at the Path Browser, the PYTHONPATH entries are not in sys.path and my code doesn't run. There are several posts that talk about adding code to add to the sys.path in IDLE, but that's a hack that I don't want to do. How can I get IDLE to read the PYTHONPATH entries into sys.path?
Some further information: On Windows I set up a PYTHONPATH environment varaiable and the paths do show up in the Path Browser as expected.
Is this a basic issue with IDLE on OSX, or perhaps I have something messed up in the install, or ?