Skip to content

Installation

JuniorAlive edited this page Aug 1, 2024 · 17 revisions

Installing SPYCLI involves a few simple steps that differ slightly depending on your operating system. Follow the instructions below for your specific platform to ensure proper installation.

Windows

Prerequisites

  • Ensure Python and Pip are installed on your system.

Steps

  1. Install fzf: Open a prompt or PowerShel and run:

    winget install fzf
  2. Download and install SPYCLI: Open a command prompt or PowerShell and run:

    curl -LO https://github.com/junioralive/spycli/releases/download/v1.0.0/spycli-1.0.0-py3-none-any.whl
    pip install spycli-1.0.0-py3-none-any.whl
  3. Install MPV Player: Open a prompt or PowerShel and run:

    pip install py7zr
    spycli.player

Linux

Prerequisites

Steps

  1. Install dependencies: Use the package manager to install fzf and mpv:

    sudo apt-get install fzf mpv
  2. Download and install SPYCLI:

    curl -LO https://github.com/junioralive/spycli/releases/download/v1.0.0/spycli-1.0.0-py3-none-any.whl
    pip3 install spycli-1.0.0-py3-none-any.whl

macOS

Prerequisites

  • Homebrew installed along with Python and Pip.

Steps

  1. Install dependencies:

    brew install fzf mpv
  2. Download and install SPYCLI:

    curl -LO https://github.com/junioralive/spycli/releases/download/v1.0.0/spycli-1.0.0-py3-none-any.whl
    pip install spycli-1.0.0-py3-none-any.whl

Android

Prerequisites

Steps

  1. Setup Termux:

    pkg update && pkg upgrade
    pkg install python git curl
  2. Download and install SPYCLI:

    curl -O https://github.com/junioralive/spycli/releases/download/v1.0.0/spycli-1.0.0-py3-none-any.whl
    pip install spycli-1.0.0-py3-none-any.whl

iOS

Prerequisites

Steps

  1. Setup iSH:

    apk update && apk upgrade
    apk add python3 git curl
  2. Download and install SPYCLI:

    curl -O https://github.com/junioralive/spycli/releases/download/v1.0.0/spycli-1.0.0-py3-none-any.whl
    pip3 install spycli-1.0.0-py3-none-any.whl
Clone this wiki locally