Skip to content

Installation

JuniorAlive edited this page Aug 11, 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 PowerShell and run:

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

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

Linux 🐧

Prerequisites

  • Python 🐍 and Pip πŸ“¦ should be installed.

Steps

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

    sudo apt-get install fzf mpv 
  2. Download and install the latest version of SPYCLI:

    curl -LO https://github.com/junioralive/spycli/releases/download/0.0.1/spycli-1.0.0-py3-none-any.whl && pip 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 the latest version of SPYCLI:

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

Android πŸ“±

Prerequisites

  • Termux πŸ–₯️ and MPV Player πŸŽ₯ app installed from the Play Store or F-Droid.

Steps

  1. Setup Termux:

    pkg update && pkg upgrade
    pkg install python fzf curl
  2. Download and install the latest version of SPYCLI:

    curl -LO https://github.com/junioralive/spycli/releases/download/1.0.0/spycli-1.0.0.tar.gz && pip install spycli-1.0.0.tar.gz

iOS 🍎

Prerequisites

Steps

  1. Setup iSH:

    apk update && apk upgrade
    apk add python3 fzf curl
    python3 -m ensurepip --upgrade
  2. Download and install the latest version of SPYCLI:

    curl -LO https://github.com/junioralive/spycli/releases/download/1.0.0/spycli-1.0.0.tar.gz && pip3 install spycli-1.0.0.tar.gz
Clone this wiki locally