clearly a package management tool is the way to go, because they should be able to set all the stuff I'm about to mention (plus check compatibility and dependencies) but here's some stuff that might be helpful if you run into any problems with the package manager you choose:
before you make changes, check PATH by using echo $PATH in bash. The directories are listed in the order that they are searched.
you can determine which version of python is used in bash by changing the order of directories in PATH such that the version you want appears first in PATH.
For example, if you want a python version in opt/local/bin rather than one in usr/local/bin, you can set PATH in your .bash_profile or .bashrc file with a line like this:
export PATH=opt/local/bin:$PATH
You can check the file path of the python bash is using with:
which python (entered in bash)
As for the libraries, ensure that PYTHONPATH in bash and sys.path in python are set correctly, so that it can find the appropriate libraries, and uses the updated and compatible versions instead of the old ones. You can also create .pth files containing paths to directories that you want to add to sys.path, and can use PYTHONSTARTUP in bash to run a module at startup that sets sys.path.
Unless you have a whole new set of libraries in a separate folder for the specific version of python, you may encounter problems, especially since many libraries will rely on others, and may therefore use outdated versions of each other.
If you have more than one module on sys.path that uses the same name, they may conflict.
you can check the directory path of a python module you have imported like this:
import Cython
print Cython.__file__
Hopefully all of this will be taken care of by the package manager of your choice, but you can at least check your paths carefully if you encounter trouble.