I’m new to python. Are there alternatives to downloading a tarball for a python module & installing it via python setup install ? Anything like rubygems?
UPDATE I’m surprised that there are so many solutions for this one problem.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There are many options – you can stick with your system’s default packaging system (if it has one) or you can pick one (or more) of existing Python tools like
easy_install,zc.buildoutorpip. I would recommend you to use Distribute together withpip.