A GUI client intended to simplify usage of all the utils of the localization project (https://github.com/dfint/).
- Python 3 must be installed (version 3.8.1 or higher).
Also, on Linux tkinter library must be installed (e.g. runsudo apt install python3-tk
on Ubuntu). - Download project as zip archive and unpack it (or just clone with git if you know how to use it)
- Double click
df-translate.pyw
file. It will take a moment before the main window appears when you run it for the first time, because it downloads required modules.
-
Install
poetry
, then install the package with the following commands from the command line:pip install poetry
(use
pip3
instead ofpip
on Linux)Other possible ways of installation of poetry see here.
-
Install the application with poetry and run it from the command line:
poetry install poetry run df-translate
If you need to run the application from an activated virtual environment (eg. when you are using PyCharm), then use the following command:
# poetry install # poetry shell python -m df_translation_client
I don't recommend running with
df-translate.pyw
, cause it will remove development requirements (likepytest
,flake8
, etc.) from the virtual environment.