File size: 1,437 Bytes
fb27b03 47ffc85 fb27b03 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
.. highlight:: shell
============
インストール方法
============
安定版
--------------
deep_translatorをインストールしたい場合、以下のコマンドをターミナルで入力してください:
.. code-block:: console
$ pip install deep_translator
常に最新の安定版をインストールできるため、deep_translatorはこの方法でインストールすることを推奨します。
pipがインストールされていない場合は、以下のPythonインストールガイドを参照してください。
.. _pip: https://pip.pypa.io
.. _Python installation guide: http://docs.python-guide.org/en/latest/starting/installation/
From sources
------------
deep_translatorのソースはGithubのリポジトリからダウンロードできます.
公開されているリポジトリのクローンも可能です:
.. code-block:: console
$ git clone git://github.com/nidhaloff/deep_translator
tarballをインストールする場合は以下のようになります:
.. code-block:: console
$ curl -OJL https://github.com/nidhaloff/deep_translator/tarball/master
クローンした後に、以下のコマンドを実行することでインストールが出来ます:
.. code-block:: console
$ python setup.py install
.. _Github repo: https://github.com/nidhaloff/deep_translator
.. _tarball: https://github.com/nidhaloff/deep_translator/tarball/master
|