-3

Pandas is a pretty bulky module, hence I do not wish to install it in its entirity. Only the ones I'll be using in my codes.

from pandas import DataFrame
from pandas import ExcelWriter
from pandas import pivot_table
from pandas import read_csv

How can I pip install only these packages?

pip install ?

Using Python 2.7 on Windows.

EDIT:
Space is an issue for me. Pandas is a bulky module and is difficult to import onto aws lambda

1 Answers1

1

This is not officially supported by pandas. The pandas documentation (link) make no mention of how to install some parts of the module but not others. This is probably because of how tightly coupled the functions and modules are.

touch my body
  • 1,634
  • 22
  • 36