I use my .bash_profile to add a directory to PYTHONPATH
export PYTHONPATH="${PYTHONPATH}:/Users/selah/newdir"
In my Anaconda installation of Spyder the path I added does not show up when I type:
import sys
sys.paths
However when i do the same in Jupyter notebook, or terminal python it does show up.
Why the discrepancy? Is there a way to get Spyder to recognize my modified PYTHONPATH?