Maxrepeat Issue When Running Python 2.7 From Macports
I'm running into some issues with running python2.7 from MacPorts. Here's a list of the available Python versions: $ sudo port select python Available versions for python: none
Solution 1:
I just experienced the same issue. A quick and easy workaround is to add an alias in ~/.profile:
alias python='python2.7'
If you don't have a .profile file already, just create one. Open a new instance of terminal and python should work fine with no errors.
Post a Comment for "Maxrepeat Issue When Running Python 2.7 From Macports"