How can I update all python modules I have installed on ubuntu?
Share
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.
Ubuntu’s repositories usually contain up-to-date versions of Python modules (prefixed with
python-) and if you do anapt-get dist-upgradewill update any that you’ve installed from the repos.As for packages you may have installed with
easy_install, you could use distribute to upgrade them.Alternatively, you can construct a list of packages you have installed with yolk, and pass the packages in the list from
yolk -ltoeasy_install.