IronPDF トラブルシューティング IronPdf.Slim.dllを見つけることができませんでした Error: Failed to Locate IronPDF in Python Curtis Chau 更新日:6月 8, 2025 Download IronPDF pipダウンロード Start Free Trial Copy for LLMs Copy for LLMs Copy page as Markdown for LLMs Open in ChatGPT Ask ChatGPT about this page Open in Gemini Ask Gemini about this page Open in Grok Ask Grok about this page Open in Perplexity Ask Perplexity about this page Share Share on Facebook Share on X (Twitter) Share on LinkedIn Copy URL Email article This article was translated from English: Does it need improvement? Translated View the article in English .NET 6.0 SDKをインストールし、次のコマンドを使用してpip経由でIronPdfをインストールしていると仮定します。 pip install ironpdf Pythonスクリプトを実行すると次の例外が発生する可能性があります。 Exception has occurred: Exception Failed to locate IronPdf.Slim.dll at 'C:\Users\Name\AppData\Local\Programs\Python\Python311/IronPdf.Slim'. Please see /troubleshooting/quick-ironpdf-troubleshooting/ for more information File "C:\Users\Name\OneDrive\Documents\IronPdfPythonNew\working\viewport.py", line 1, in <module> from ironpdf import * Exception: Failed to locate IronPdf.Slim.dll at 'C:\Users\Name\AppData\Local\Programs\Python\Python311/IronPdf.Slim'. Please see https://ironpdf.com/troubleshooting/quick-ironpdf-troubleshooting/ for more information 解決策 IronPdf.Slimを含むディレクトリは次のように指定できます。 import sys # Set the path to include the directory containing the IronPdf.Slim files. # Users can determine this location by running `pip uninstall ironpdf` and pressing `N` to view the installation path. sys.path.append('/path/to/python/packages') import sys # Set the path to include the directory containing the IronPdf.Slim files. # Users can determine this location by running `pip uninstall ironpdf` and pressing `N` to view the installation path. sys.path.append('/path/to/python/packages') PYTHON 例えば import sys # Add the directory of the IronPdf installation to the path for module resolution. # This should point to the root directory of where IronPdf is installed. sys.path.append(r'C:\Users\lyty1\AppData\Local\Programs\Python\Python311\Lib\site-packages') from ironpdf import * # Instantiate Renderer renderer = ChromePdfRenderer() # Create a PDF from a URL or local file path pdf = renderer.RenderUrlAsPdf("https://ironpdf.com/") # Export to a file or Stream pdf.SaveAs("url.pdf") import sys # Add the directory of the IronPdf installation to the path for module resolution. # This should point to the root directory of where IronPdf is installed. sys.path.append(r'C:\Users\lyty1\AppData\Local\Programs\Python\Python311\Lib\site-packages') from ironpdf import * # Instantiate Renderer renderer = ChromePdfRenderer() # Create a PDF from a URL or local file path pdf = renderer.RenderUrlAsPdf("https://ironpdf.com/") # Export to a file or Stream pdf.SaveAs("url.pdf") PYTHON 理由 ほとんどのサードパーティライブラリは「site-packages」というディレクトリにインストールされており、Pythonインストールディレクトリや仮想環境を使用している場合は仮想環境ディレクトリ内にあります。 これはPythonインタープリターからアクセス可能なディレクトリです。 IronPDFはIronPdf.SlimとIronPdf.Native.Chrome.Windowsの両方をインストールします。 正確な場所はオペレーティングシステムやPythonの設定によって異なる場合があります。 Curtis Chau 今すぐエンジニアリングチームとチャット テクニカルライター Curtis Chauは、カールトン大学でコンピュータサイエンスの学士号を取得し、Node.js、TypeScript、JavaScript、およびReactに精通したフロントエンド開発を専門としています。直感的で美しいユーザーインターフェースを作成することに情熱を持ち、Curtisは現代のフレームワークを用いた開発や、構造の良い視覚的に魅力的なマニュアルの作成を楽しんでいます。開発以外にも、CurtisはIoT(Internet of Things)への強い関心を持ち、ハードウェアとソフトウェアの統合方法を模索しています。余暇には、ゲームをしたりDiscordボットを作成したりして、技術に対する愛情と創造性を組み合わせています。 準備はいいですか? バージョン: 2025.9 ただ今リリースされました 無料のpipインストール ライセンスを見る