I am looking to set up my laptop for both Python development and Phonegap Android development in OSX 10.8 using Eclipse. I installed the lastest version of Python (3.3) which added the code:
# Setting PATH for Python 3.3
# The orginal version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/3.3/bin:${PATH}"
export PATH
to my .bash_profile. In process of setting up Phonegap you need to set up the PATH for the Android Development tools with the following line:
export PATH=${PATH}:/Development/android-sdk-macosx/platform-tools:/Development/android-sdk-macosx/tools
Is it possible to set up both PATHs in the .bash_profile so that Python and Android development can take place simultaneously? Or would I need to switch between the PATHs depending on what type of development I would like to do?