Files
Linglun-Converter/docs/download&start_EN/Linux.md
2025-08-28 00:25:23 +08:00

3.0 KiB
Raw Blame History

1 CLI - Docker

Using the Dockerfile in the root directory to build a Docker image, and run it.

2 GUI

to be written


Install Runtime Environment

Install and Verify Python Runtime

  1. Common Linux Distributions do include a Python Runtime Environment, what we should do is only to check whether it is a satisfied version to our program. If the version ≥Python3.6, theoretically our program can be run.

    We can type:

    python -V
    

    To check the Python version, as the follows

  2. Not Necessary

    If you want to change a Python version just as what I want to do, it is such a great fantastic action! Let do as the follows:

    • pacman Package ManagerIn Arch Linux Mostly

      1. Let's write python3 into the ingore list of updating. Via vim to edit /etc/pacman.conf, add python3 after IgnorePkg.
        ```bash
        sudo vim /etc/pacman.conf
        ```
      
        <img src=https://foruda.gitee.com/images/1665124611490335193/5e99ca26_9911226.png>
      
      1. Then we can search for python releases in Arch Achieve.HERE, under Arch, Python refers to Python3 defaultly, while some other Linux releases using Python2 as default. So dose Arch Achieve.What I find here is Python3.8.6, so let's download she via pacman:
        ```bash
        sudo pacman -U https://archive.archlinux.org/packages/p/python/python-3.8.6-1-x86_64.pkg.tar.zst
        ```
      
        <img src=https://foruda.gitee.com/images/1665126362769399903/ea4b9598_9911226.png>
      
      1. Perfect!
    • Other Package Manager

      None yet.

Install and Verify pip Package Manager

  1. Before installing, it is to be checked, wheather Python's pip is OK:

    python -m pip				# To check is pip installed
    # If a long tip occured, it is OK
    
    # If returned as this, then not.
    /usr/bin/python: No module named pip
    # We can install pip via:
    sudo pacman -S python-pip
    # Check, remember.
    python -m pip
    
    
    # If you did but failed, we should use other methods to install pip:
    wget https://bootstrap.pypa.io/get-pip.py
    sudo python get-pip.py
    # Double check, must.
    python -m pip
    
  2. After checking, let's install the dependences.

    pip install -r requirements_cli.txt -i https://mirrors.aliyun.com/pypi/simple/
    
  3. See the tips below as successfully installed

Download this lib's sources code and Using its demos.

  1. Download via Git

    git clone https://gitee.com/TriM-Organization/Linglun-Converter.git llc
    

    If succeed, a directory named llc well be found in the path you run this command, and inside it is the source codes we wantted to download. What we want to use is in the folder so enter the folder via:

    cd llc
    
  2. Starting Using

    Via

    python llc_cli.py