Source

Python 3.4 to be equipped with pip by default

Hi there Pythonistas. A news has arrived that pip will be available by default with python 3.4. PEP 453 which was “Explicit bootstrapping of pip in Python installations” has been accepted. Python 3.4 which has entered into the beta phase after the release of final alpha will have pip by default. If you are new to python then you might be wondering what pip is ? Pip is a tool for installing and managing Python packages. Previously easy_install has been the most used package manager. 

Easy_Install is a python module (easy_install) bundled with setuptools that lets you automatically download, build, install, and manage Python packages but has a lot of weak points in front of pip. In order to use pip you first have to install it by using easy_install. Why pip is better:

  • The command is simpler, shorter
  • First-class support of virtualenv
  • More commands than just install, including uninstallpip bundlepip freeze and pip search are pretty nice as well.
  • Can install from a VCS (via -e), or from source
  • Requirements files are easy to use, clearly describes what happens in its process
  • If it can not download all the dependencies, it will not install anything (though I don’t think it rolls stuff back if an installation fails

I hope you are as much happy as I am with the acceptance of this PEP. Do share your views in the comments below and don’t forget to share this post and follow this blog in order to get the latest news relating with the python world.

Newsletter

×

If you liked what you read then I am sure you will enjoy a newsletter of the content I create. I send it out every other month. It contains new stuff that I make, links I find interesting on the web, and occasional discount coupons for my book. Join the 5000+ other people who receive my newsletter:

I send out the newsletter once every other month. No spam, I promise + you can unsubscribe at anytime

✍️ Comments

ax25

Yes! This!

James Mills (@therealprologic)

This is great new indeed. Good to see Python choosing a package management toolset and going with it. Finally! :)

Yasoob

Thanx for the info I have corrected it. I don’t how can I be so silly. :)

B White

I’m a little confused; is pip actually going to be bundled with Python 3.4, or is Python 3.4 just going to be able to work with pip out of the box?

Say something

Send me an email when someone comments on this post.

Thank you!

Your comment has been submitted and will be published once it has been approved. 😊

OK