Skip to content Skip to sidebar Skip to footer

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.

Solution 2:

I had the same problem. Appears to be a problem with links to executables, particularly vim/MacVim. I resolved the issue for myself by following the discussion here.

There is also more material here.

Hope this helps.

Max

Post a Comment for "Maxrepeat Issue When Running Python 2.7 From Macports"