Third Party Package
Except from a package create from ourself and python built in package we also can install other third party package.

Install third party package
- Required
Internet Connectionfor installation of third party package.
cmd
pip install <package_name>Rare: Change mirror server (Temporary)
Sometimes, we may facing problem like
So slow to download a python package. So sometimes we have to change it's mirror server.Example of mirror server: https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple (Tsinghua University (TUNA) Python mirror)
cmd
pip install -i <mirror_server_url> <package_name>Change mirror server (Permanently)
cmd
pip config set global.index-url <mirror_server_url>