PythonでDeepL APIと対話するためのライブラリ「deepl」のインストールについて解説しています。
DeepL APIは、テキストやドキュメントをDeepLのサーバーに送信し、高品質な翻訳を受け取ることを可能にする言語翻訳APIです。deeplライブラリは、Pythonで書かれたDeepL API と対話するための便利な方法を提供しています。
■Python
今回のPythonのバージョンは、「3.8.5」を使用しています。(Windows10)(pythonランチャーでの確認)
■deeplをインストールする
deeplをインストールを行いますが、今回はpipを経由してインストールを行うので、まずWindowsのコマンドプロンプトを起動します。
pip install deepl
起動後、上記のコマンドを入力し、Enterキーを押します。
なお、今回は、pythonランチャーを使用しており、Python Version 3.8.5にインストールを行うために、pipを使う場合にはコマンドでの切り替えを行います。
py -3.8 -m pip install deepl
切り替えるために、上記のコマンドを入力し、Enterキーを押します。
Defaulting to user installation because normal site-packages is not writeable Collecting deepl Downloading deepl-1.0.1-py3-none-any.whl (19 kB) Requirement already satisfied: requests<3.0,>=2.18 in c:\users\user_\appdata\roaming\python\python38\site-packages (from deepl) (2.25.1) Requirement already satisfied: chardet<5,>=3.0.2 in c:\users\user_\appdata\roaming\python\python38\site-packages (from requests<3.0,>=2.18->deepl) (4.0.0) Requirement already satisfied: urllib3<1.27,>=1.21.1 in c:\users\user_\appdata\roaming\python\python38\site-packages (from requests<3.0,>=2.18->deepl) (1.26.5) Requirement already satisfied: idna<3,>=2.5 in c:\users\user_\appdata\roaming\python\python38\site-packages (from requests<3.0,>=2.18->deepl) (2.10) Requirement already satisfied: certifi>=2017.4.17 in c:\users\user_\appdata\roaming\python\python38\site-packages (from requests<3.0,>=2.18->deepl) (2021.5.30) Installing collected packages: deepl Successfully installed deepl-1.0.1
Enterキーを押すと、インストールが開始され、上記のように「Successfully installed」と表示されます。これが表示されれば、deeplが正常にインストールされたことになります。
なお、今回はdeeplのバージョン1.3.3をインストールしました。
コメント