Question
How can I install PRAW with a MacPorts version of python?
It seems like there is no port for it.
What I tried
The closest thing I’ve found to this question is: MacPorts manual port location, so I mucked around with trying to make my own port for it, but I really don’t know what I’m doing.
I know that I could install it with pip for a non-MacPorts version of Python.
This is no need for a platform-specific version of PRAW. Using
piporeasy_installis the recommended way to get the most up-to-date python packages as PyPI, the Python Package Index, is to python packages what MacPorts, (or Brew, Fink, etc), is to OSX-specific packages.As the PRAW package maintainer, I would prefer that you do not create platform-specific packages, simply because they are unnecessary and more importantly because they become out-of-date very quickly.
If you are worried about cluttering the namespace of your system’s python, then I suggest you use virtualenv, or the built-in virtual environment features if you are using python 3.3.