Is it possible to use the pptx (Python-pptx) module for Python 3.5.1? Like for example:
from pptx import Presentation from pptx.util import Pt If not then what is the easyest way to replace this module? I think it shouldn't matter for the result but I am using PyCharm as IDE.
I have tried to install it with pip install python-pptx. Installing with pip worked just fine when I installed Pandas and matplotlib and other modules. But when I tried to install Python-pptx I got: ERROR: b"'xslt-config' is not recognized as an internal or external command,\r\noperable program or batch file.\r\n". Then I searched on google but instead only found that it is not possible because Python-pptx only supports python 3.4 or lower and now python 3.5 (what I saw of it)
This is why I started to wonder if there is perhaps a work-around to still make it work. And if not if there are other modules that work like Python-pptx so I won't have to change my whole code too much.
setup.py)