Welcome to Translation-Gummy’s documentation!

header PyPI version GitHub version Execute Translation-Gummy Upload to PyPI license Open in Colab Documentation twitter badge Qiita badge1 Qiita badge2 website Sponsor Add to Slack

Translation Gummy is a magical gadget which enables user to be able to speak and understand other languages.

※ Supported journals are listed here.

Indices and tables

Installation

  1. Install Translation-Gummy (There are two ways to install):

    • Install from PyPI (recommended):

      $ sudo pip install Translation-Gummy
      
    • Alternatively: install Translation-Gummy from the GitHub source:

      $ git clone https://github.com/iwasakishuto/Translation-Gummy.git
      # If you want to use the latest version (under development)
      $ git clone -b develop https://github.com/iwasakishuto/Translation-Gummy.git
      $ cd Translation-Gummy
      $ sudo python setup.py install
      
  2. Install wkhtmltopdf

    • Debian/Ubuntu:

      $ sudo apt-get install wkhtmltopdf
      
    • macOS:

      $ brew install Caskroom/cask/wkhtmltopdf
      
  3. Install driver for selenium: Selenium requires a driver to interface with the chosen browser, so please visit the documentation to install it.

    # Example: Chrome
    # visit "chrome://settings/help" to check your chrome version.
    # visit "https://chromedriver.chromium.org/downloads" to check <Suitable.Driver.Version> for your chrome.
    $ wget https://chromedriver.storage.googleapis.com/<Suitable.Driver.Version>/chromedriver_mac64.zip
    $ unzip chromedriver_mac64.zip
    $ mv chromedriver /usr/local/bin/chromedriver
    $ chmod +x /usr/local/bin/chromedriver