Skip to content

Getting Started

JuniorAlive edited this page Aug 1, 2024 · 3 revisions

This guide will help you set up SPYCLI on your device, detailing the prerequisites and installation steps for different operating systems.

Prerequisites

Before installing SPYCLI, ensure you have the necessary media player and tools installed based on your operating system:

Additionally, the following tools are required across all platforms:

Installation

Installation instructions vary based on the operating system. Please follow the steps for your respective platform.

Windows

  1. Install Python and pip (if not already installed).
  2. Install fzf using Winget:
    winget install fzf
  3. 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

Linux

  1. Install Python, pip, and fzf via your package manager, e.g., APT for Debian-based systems:
    sudo apt-get install python3 pip 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

  1. Install Homebrew if not already installed, then use it to install Python, pip, fzf, and mpv:
    /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
    brew install python3 pip 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

Android

  1. Install MPV Player from Google Play Store and Termux from F-Droid.
  2. Setup Termux with necessary packages:
    pkg update && pkg upgrade
    pkg install python git curl
    pip install --upgrade pip
  3. 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

  1. Install VLC Media Player from the App Store and iSH from the App Store.
  2. Setup iSH with necessary packages:
    apk update && apk upgrade
    apk add python3 git curl
    pip3 install --upgrade pip
  3. 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