お世話になります。
python-pptxを使いたく、pipでインストールしましたが、いざJupyter Lab環境でインポートしようとするとエラーが出てしまいます。
対処方法を教えて下さい。
以下のようにインストールしました。
[root@user01 ~]# pip3 install python-pptx WARNING: Running pip install with root privileges is generally not a good idea. Try `pip3 install --user` instead. Collecting python-pptx Downloading https://files.pythonhosted.org/packages/bf/86/eb979f7b0333ec769041aae36df8b9f1bd8bea5bbad44620663890dce561/python-pptx-0.6.18.tar.gz (8.9MB) 100% |████████████████████████████████| 8.9MB 208kB/s Collecting lxml>=3.1.0 (from python-pptx) Downloading https://files.pythonhosted.org/packages/bd/78/56a7c88a57d0d14945472535d0df9fb4bbad7d34ede658ec7961635c790e/lxml-4.6.2-cp36-cp36m-manylinux1_x86_64.whl (5.5MB) 100% |████████████████████████████████| 5.5MB 326kB/s Collecting Pillow>=3.3.2 (from python-pptx) Downloading https://files.pythonhosted.org/packages/b6/c0/442d9d87e0da00bf856ef6dd4916f84a2d710b5f1a367d42d7f3c4e99a6c/Pillow-8.1.0-cp36-cp36m-manylinux1_x86_64.whl (2.2MB) 100% |████████████████████████████████| 2.2MB 618kB/s Collecting XlsxWriter>=0.5.7 (from python-pptx) Downloading https://files.pythonhosted.org/packages/6b/41/bf1aae04932d1eaffee1fc5f8b38ca47bbbf07d765129539bc4bcce1ce0c/XlsxWriter-1.3.7-py2.py3-none-any.whl (144kB) 100% |████████████████████████████████| 153kB 3.3MB/s Installing collected packages: lxml, Pillow, XlsxWriter, python-pptx Running setup.py install for python-pptx ... done Successfully installed Pillow-8.1.0 XlsxWriter-1.3.7 lxml-4.6.2 python-pptx-0.6.18
インストールの確認結果は以下です。
[root@user01 ~]# python3 -m pip show python-pptx Name: python-pptx Version: 0.6.18 Summary: Generate and manipulate Open XML PowerPoint (.pptx) files Home-page: http://github.com/scanny/python-pptx Author: Steve Canny Author-email: python-pptx@googlegroups.com License: The MIT License (MIT) Location: /usr/local/lib/python3.6/site-packages Requires: lxml, Pillow, XlsxWriter
エラーメッセージは以下です。
from pptx import Presentation --------------------------------------------------------------------------- ModuleNotFoundError Traceback (most recent call last) <ipython-input-11-9b6dec74c5d5> in <module> ----> 1 from pptx import Presentation ModuleNotFoundError: No module named 'pptx'
こちらの環境は以下の通りです。
・CentOS Linux release 7.8.2003 (Core)
・Python 3.6.8
・Jupyter Lab Version 2.1.5
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー