I have just started using Ubuntu as my first Linux, have a couple of question.
- What is the difference between easy_install and apt-get?
- How do I update my packages with packages installed in both these ways?
- They are under pythonpath right?
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.
You are confusing two completely separate things.
Aptitude, of which
apt_getis one part, is the Ubuntu system-wide package manager. It has packages for absolutely everything – applications, libraries, system utils, whatever. They may not be the latest versions, as packages are usually only updated for each separate Ubuntu release (except for security and bug fixes).easy_installis a Python-only system for install Python libraries. It doesn’t do anything else. The libraries are installed in the system Python’ssite-packagesdirectory. There are some downsides to easy_install, one of which is that it’s hard to upgrade and uninstall libraries. Usepipinstead.