Skip to content

Third Party Package

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

Example of popular third party package

Install third party package

  • Required Internet Connection for installation of third party package.
cmd
pip install <package_name>

Rare: Change mirror server (Temporary)

cmd
pip install -i <mirror_server_url> <package_name>

Change mirror server (Permanently)

cmd
pip config set global.index-url <mirror_server_url>