Add, remove, and search packages in Python with pip

Using pip to manage Python packages Like many useful programming ecosystems, Python provides a powerful and easy-to-use package management system called pip. It is written to replace an older tool called easy_install. From a high-level point of view, pip has the following advantages over easy_install: All packages are downloaded before installation to prevent partial (thus [...]

Read More

How to Install Virtualenv (Python)

Python is a very powerful scripting language. The language has lots of Python packages you can install and use in your projects. Sometimes, you may have different projects that need different versions of the same package/module. For example, let’s say you’re developing a web application with the latest version of Django for a customer. At [...]

Read More