How to install ?

  1. Install python .

    Verify installation: python3 --version in the terminal.

  2. Create a virtual environment.

    $ python3 -m venv .venv
    
  3. Activate the environment.

    $ source .venv/bin/activate
    
    $ source .venv/bin/activate
    
    • On Command Prompt:

      $ .venv\Scripts\activate.bat
      
    • On PowerShell:

      $ .venv\Scripts\Activate.ps1
      
  4. Download leapscom-1.1.1-py3-none-any.whl.

  1. Install leapscom.

    $ pip3 install leapscom-1.1.1-py3-none-any.whl
    

    or

    $ pip3 install --no-user --target leapscom-1.1.1-py3-none-any.whl
    

    Make sure you have the installation folder in your system path!

  1. Verify that the installed tool works.

$ python3 -m leapscom --help
  1. Optionally, you can uninstall the previously installed tool.

$ pip3 uninstall leapscom

注釈

  • Need to activate the environment every time open a new terminal to work on this tool.