config python to support read/write pdf/excel/ppt

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/lantianjialiang/article/details/91522499

python matplotlib

  1. install it
    python -m pip install -U pip
    python -m pip install -U matplotlib

  2. install pdf lib
    pip install pdfplumber

  3. install excel lib
    pip install openpyxl

    There is support for the popular lxml library which will be used if it is installed. This is particular useful when creating large files.
    pip install lxml

    To be able to include images (jpeg, png, bmp,…) into an openpyxl file, you will also need the “pillow” library that can be installed with:
    pip install pillow

  4. install ppt lib
    pip install python-pptx

  5. install jupter
    python -m pip install jupyter

猜你喜欢

转载自blog.csdn.net/lantianjialiang/article/details/91522499
今日推荐