You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for pypandoc I have been using it for quite some while now ;). However, there is a tiny problem when using pypandoc.download_pandoc() on windows. The installer will be downloaded but cannot be executed due to a wrong path.
The installer will be downloaded to download_folder. However, the installer path passed to subprocess.check_call is wong. The path to the installer is generated via:
# pypandoc/download_pandoc.py line 195filename=os.path.expanduser(download_folder) +'/'+filename
So the generated path on windows will be: C:\\Some\\Path\\to/my_installer.msi about which windows complains.
Thank you for looking into this :).
The text was updated successfully, but these errors were encountered:
Hey,
Thanks for
pypandoc
I have been using it for quite some while now ;). However, there is a tiny problem when usingpypandoc.download_pandoc()
on windows. The installer will be downloaded but cannot be executed due to a wrong path.Steps to reproduce:
Create the following folder structure
Run
Run the following code snippet
The installer will be downloaded to
download_folder
. However, the installer path passed tosubprocess.check_call
is wong. The path to the installer is generated via:So the generated path on windows will be:
C:\\Some\\Path\\to/my_installer.msi
about which windows complains.Thank you for looking into this :).
The text was updated successfully, but these errors were encountered: