1

私は、Django アプリに PDFNet の試用版を認識させる方法を見つけようとして、ぐるぐる回っています。

https://pypi.python.org/pypi/PDFTron-PDFNet-SDK-for-Python/5.7

ファイルを ~/usr/bin ディレクトリに追加しようとしましたが、それらを virtualenv の bin ディレクトリにドロップしようとしました。どちらも機能していません。私は見つけることができるすべてのドキュメントを読みました。私はこのパッケージを見て、それをインストールして自分のプロジェクトで利用する方法を知るには、Python 開発者としては初心者です。

助けてください!

更新アプリ フォルダーを作成し、このコンポーネントをアプリ リストにアプリとしてリストしようとしましたが、コードを実行してアプリケーションを起動すると、次のエラーが発生します。

ライブラリがロードされていません: @rpath/libPDFNetC.dylib

すべての lib ファイルをプロジェクト内のこのフォルダーに配置しました。

  • __init.py (空)
  • _PDFNetPython.so
  • libPDFNetC.dylib
  • PDFNetPython.py
  • PDFNetRuby.bundle

コンポーネントを使用しようとしていた py ファイルの先頭で、次のインポート コードを使用しました。

import site
site.addsitedir("../pdfnetc")
from pdfnetc.PDFNetPython import *

lib ファイルを pdfnetc という名前のアプリ フォルダーに入れます。これを取得すると、インポートステートメントはpycharmで見つからないものとしてリストされなくなりました。

スタック トレースは次のとおりです。

Traceback (most recent call last):
  File "/Applications/PyCharm.app/Contents/helpers/pydev/pydevd.py", line 2217, in <module>
    globals = debugger.run(setup['file'], None, None)
  File "/Applications/PyCharm.app/Contents/helpers/pydev/pydevd.py", line 1643, in run
    pydev_imports.execfile(file, globals, locals)  # execute the script
  File "/Users/ntregillus/myapp/manage.py", line 12, in <module>
    execute_from_command_line(sys.argv)
  File "/Users/ntregillus/Envs/myapp/lib/python2.7/site-packages/django/core/management/__init__.py", line 385, in execute_from_command_line
    utility.execute()
  File "/Users/ntregillus/Envs/myapp/lib/python2.7/site-packages/django/core/management/__init__.py", line 354, in execute
    django.setup()
  File "/Users/ntregillus/Envs/myapp/lib/python2.7/site-packages/django/__init__.py", line 21, in setup
    apps.populate(settings.INSTALLED_APPS)
  File "/Users/ntregillus/Envs/myapp/lib/python2.7/site-packages/django/apps/registry.py", line 108, in populate
    app_config.import_models(all_models)
  File "/Users/ntregillus/Envs/myapp/lib/python2.7/site-packages/django/apps/config.py", line 202, in import_models
    self.models_module = import_module(models_module_name)
  File "/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/importlib/__init__.py", line 37, in import_module
    __import__(name)
  File "/Users/ntregillus/myapp/statements/models.py", line 12, in <module>
    from statements.managers import StatementTemplateManager, StatementManager
  File "/Users/ntregillus/myapp/statements/managers.py", line 8, in <module>
    from statements.utils import render_to_pdf, StatementContextBuilder
  File "/Users/ntregillus/myapp/statements/utils.py", line 23, in <module>
    from pdfnetc.PDFNetPython import *
  File "/Users/ntregillus/myapp/pdfnetc/PDFNetPython.py", line 28, in <module>
    _PDFNetPython = swig_import_helper()
  File "/Users/ntregillus/myapp/pdfnetc/PDFNetPython.py", line 24, in swig_import_helper
    _mod = imp.load_module('_PDFNetPython', fp, pathname, description)
ImportError: dlopen(/Users/ntregillus/myapp/pdfnetc/_PDFNetPython.so, 2): Library not loaded: @rpath/libPDFNetC.dylib
  Referenced from: /Users/ntregillus/myapp/pdfnetc/_PDFNetPython.so
  Reason: image not found
4

4 に答える 4

3

python -m pip install PDFNetPython3 ホームページリンクはこちら

于 2020-10-25T20:01:24.210 に答える