How to use Python additional packages without an internet connection?

example:
  ncelebic  ~  anishtest  python
Python 3.8.10 (default, Mar 15 2022, 12:22:08)
[GCC 9.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import requests
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'requests'
>>> import sys
>>> sys.path.append('/usr/lib/python3/dist-packages')
>>> import requests
>>>

Brilliant, that worked