Join us and get access to thousands of tutorials and a community of expert Pythonistas.

Unlock This Lesson

This lesson is for members only. Join us and get access to thousands of tutorials and a community of expert Pythonistas.

Unlock This Lesson

Hint: You can adjust the default video playback speed in your account settings.
Hint: You can set your subtitle preferences in your account settings.
Sorry! Looks like there’s an issue with video playback 🙁 This might be due to a temporary outage or because of a configuration issue with your browser. Please refer to our video player troubleshooting guide for assistance.

Alternatives to pip

There are a number of alternatives to pip that you may want to try.

Conda is the package and environment manager that comes bundled with Anaconda. Conda has its own package repository that can be used to install Python packages into a Conda virtual environment.

Many people who use Conda prefer to use the Conda package manager to install their packages, and only use pip if the Conda repository does not contain what they’re looking for. Conda can also help you package your applications for deployment to production.

Other alternatives are Pipenv and Poetry. Like Conda, these tools merge virtual environments and package management into a single utility.

Become a Member to join the conversation.