osx - How can I decide which python I will open in mac terminal? -
i have several 2 python on mac, 1 original, , downloaded on website, when open python in terminal, how can decide i'm opening? help.
specify full path binary.
$ some/path/to/python ... >>>
alternatively, create alias so.
$ alias pythonx="some/path/to/python" $ pythonx ... >>>
Comments
Post a Comment