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
I have a fresh install of pdftools v 2.0.2 (installed via pipx in an isolated venv on python3.10). Trying to get started, I first found #11 also with this line:
Traceback (most recent call last):
File "/Users/mjf/.local/bin/pdftools", line 8, in <module>
sys.exit(main())
File "/Users/mjf/.local/pipx/venvs/pdftools/lib/python3.10/site-packages/pdftools/_cli.py", line 266, in main
pdf_copy(ARGS.input, ARGS.output, ARGS.pages, ARGS.y)
AttributeError: 'Namespace' object has no attribute 'input'
Even if one removes all the "optional" command line args, this crashes:
pdftools copy src.pdf Mon Jan 17 15:29:53 2022Traceback (most recent call last): File "/Users/mjf/.local/bin/pdftools", line 8, in <module> sys.exit(main()) File "/Users/mjf/.local/pipx/venvs/pdftools/lib/python3.10/site-packages/pdftools/_cli.py", line 266, in main pdf_copy(ARGS.input, ARGS.output, ARGS.pages, ARGS.y)AttributeError: 'Namespace' object has no attribute 'input'
The text was updated successfully, but these errors were encountered:
I have a fresh install of pdftools v 2.0.2 (installed via pipx in an isolated venv on python3.10). Trying to get started, I first found #11 also with this line:
pdftools copy --output start.pdf --pages "1-33" src.pdf
I got:
So I tried with the -y:
pdftools copy --output start.pdf --pages "1-33" -y src.pdf
and:
Even if one removes all the "optional" command line args, this crashes:
The text was updated successfully, but these errors were encountered: