Downloading and Installing Offline Python Modules

Below is my summary, feel free to add:

1. Module Download

1.1 First, let me introduce the official mirror download address:https://pypi.org/

After entering, simply search for the package name.

1.2 Downloading with pip

Find a computer with internet access, and in cmd type pip download PyPDF4

Downloading and Installing Offline Python Modules

2. Module Installation

Python offline packages come in two formats: compressed packages and whl format.

Regardless of the installation type, you need to first locate this folder.

Downloading and Installing Offline Python Modules

2.1 Installing whl format

In cmd, type pip install pandas.whl to install.

2.2 Installing compressed package format

Downloading and Installing Offline Python ModulesDownloading and Installing Offline Python ModulesType pip install . to install.Downloading and Installing Offline Python Modules

————————————————

Downloading and Installing Offline Python ModulesDownloading and Installing Offline Python ModulesDownloading and Installing Offline Python Modules

Leave a Comment