1
00:00:00,000 --> 00:00:12,080
In this video, you'll learn about pip. Pip is a Python package installer. You can use

2
00:00:12,080 --> 00:00:17,540
it apart from common Linux package installers like apt and dnf. And you can use it to install

3
00:00:17,540 --> 00:00:23,480
dependencies the right way. Use pip install package name to install a package and pip

4
00:00:23,480 --> 00:00:29,959
freeze greater than requirements.txt which will save the current requirements. If you

5
00:00:29,959 --> 00:00:36,799
have pip requirements, you can use pip install minus R requirements.txt to reinstall a package

6
00:00:36,799 --> 00:00:40,200
with the same requirements. And that's all you need to know about pip.

