lineage-rpg


Namelineage-rpg JSON
Version 0.0.50 PyPI version JSON
download
home_pageNone
SummaryAn interactive CLI RPG game.
upload_time2025-08-22 19:30:47
maintainerNone
docs_urlNone
authorNone
requires_python>=3.6
licenseNone
keywords rpg cli game fun
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Welcome to **Lineage RPG**

An offline RPG that you can play right from your terminal. Follow the steps below to install and start playing!

---

## 📦 Requirements
* Python **3.8+** ([Download here](https://www.python.org/downloads/))
* Internet connection (for installation)

---

## 🚀 Installation

### Step 0: Install Python (if not already installed)

**Windows:**
1. Go to [Python Downloads](https://www.python.org/downloads/windows/).
2. Download the latest **Python 3.8+ installer**.
3. Run the installer and **make sure to check "Add Python to PATH"**.
4. Verify installation:  
   `python --version`

**macOS:**
1. Open Terminal.
2. Check if Python is installed:  
   `python3 --version`
3. If not installed, install via Homebrew (first install Homebrew if you don’t have it):  
   `/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"`  
   `brew install python`
4. Verify installation:  
   `python3 --version`

**Linux (Ubuntu/Debian):**
1. Open Terminal.
2. Check Python:  
   `python3 --version`
3. If not installed, run:  
   `sudo apt update`  
   `sudo apt install python3 python3-pip -y`
4. Verify installation:  
   `python3 --version`

---

### Step 1: Open your terminal or command prompt

**Windows:** Press `Windows + R`, type `cmd`, and hit Enter.  
**macOS/Linux:** Open Terminal from Applications or press `Ctrl+Alt+T`.

### Step 2: Install Lineage RPG

**Windows:**  
`pip install lineage-rpg`  

or if `pip` doesn’t work:  
`python -m pip install lineage-rpg`

or if you have multiple Python versions:  
`py -m pip install lineage-rpg`

**macOS/Linux:**  
`pip3 install lineage-rpg`  

or if needed:  
`python3 -m pip install lineage-rpg`

#### If you get a permissions error:
Add `--user` to the command:
```
pip install --user lineage-rpg
```
or
```
pip3 install --user lineage-rpg
```

---

### Step 3: Upgrade to the latest version

`pip install --upgrade lineage-rpg`  

or  
`python -m pip install --upgrade lineage-rpg`

or  
`pip3 install --upgrade lineage-rpg`

or  
`python3 -m pip install --upgrade lineage-rpg`

---

## 🕹️ How to Play

Once installed, launch the game from your terminal using:  
`lineage-rpg`

If that doesn't work, try:  
`python -m lineage_rpg`  
`python3 -m lineage_rpg`  
`py -m lineage_rpg`

You'll see:  
`Welcome to Lineage RPG! Type 'exit' or CTRL+C to quit.`

Then, type `help` and press ENTER. You'll see a list of commands to start playing.

---

## ❓ Troubleshooting

### Installation Issues
* **"Command not found" or "'pip' is not recognized"**: Make sure Python and pip are correctly installed and added to your PATH. Try:  
  `python -m pip install lineage-rpg`
* **Permission denied**: Use:  
  `pip install --user lineage-rpg`  
  or run as administrator/sudo.

### Launch Issues
* **"lineage-rpg" command not found**: Try these alternatives:  
  `python -m lineage_rpg`  
  `python3 -m lineage_rpg`  
  `py -m lineage_rpg`  
  `python -m lineage_rpg.main`

### Game Issues
* **Corrupted save file**: The game will automatically reset and start fresh if your save file is corrupted.  
* **Game doesn't respond**: Use `Ctrl+C` to safely exit and save your progress.

**Still having issues?** Make sure you're using Python 3.8+ and have sufficient disk space.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "lineage-rpg",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": "rpg, cli, game, fun",
    "author": null,
    "author_email": "logicalos <logicalos.dev@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/5c/ca/1d9e7e8fb9bb29ec8f8714631f9d49df4e34455cc8fde6ae20f805c66b1a/lineage_rpg-0.0.50.tar.gz",
    "platform": null,
    "description": "# Welcome to **Lineage RPG**\r\n\r\nAn offline RPG that you can play right from your terminal. Follow the steps below to install and start playing!\r\n\r\n---\r\n\r\n## \ud83d\udce6 Requirements\r\n* Python **3.8+** ([Download here](https://www.python.org/downloads/))\r\n* Internet connection (for installation)\r\n\r\n---\r\n\r\n## \ud83d\ude80 Installation\r\n\r\n### Step 0: Install Python (if not already installed)\r\n\r\n**Windows:**\r\n1. Go to [Python Downloads](https://www.python.org/downloads/windows/).\r\n2. Download the latest **Python 3.8+ installer**.\r\n3. Run the installer and **make sure to check \"Add Python to PATH\"**.\r\n4. Verify installation:  \r\n   `python --version`\r\n\r\n**macOS:**\r\n1. Open Terminal.\r\n2. Check if Python is installed:  \r\n   `python3 --version`\r\n3. If not installed, install via Homebrew (first install Homebrew if you don\u2019t have it):  \r\n   `/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\"`  \r\n   `brew install python`\r\n4. Verify installation:  \r\n   `python3 --version`\r\n\r\n**Linux (Ubuntu/Debian):**\r\n1. Open Terminal.\r\n2. Check Python:  \r\n   `python3 --version`\r\n3. If not installed, run:  \r\n   `sudo apt update`  \r\n   `sudo apt install python3 python3-pip -y`\r\n4. Verify installation:  \r\n   `python3 --version`\r\n\r\n---\r\n\r\n### Step 1: Open your terminal or command prompt\r\n\r\n**Windows:** Press `Windows + R`, type `cmd`, and hit Enter.  \r\n**macOS/Linux:** Open Terminal from Applications or press `Ctrl+Alt+T`.\r\n\r\n### Step 2: Install Lineage RPG\r\n\r\n**Windows:**  \r\n`pip install lineage-rpg`  \r\n\r\nor if `pip` doesn\u2019t work:  \r\n`python -m pip install lineage-rpg`\r\n\r\nor if you have multiple Python versions:  \r\n`py -m pip install lineage-rpg`\r\n\r\n**macOS/Linux:**  \r\n`pip3 install lineage-rpg`  \r\n\r\nor if needed:  \r\n`python3 -m pip install lineage-rpg`\r\n\r\n#### If you get a permissions error:\r\nAdd `--user` to the command:\r\n```\r\npip install --user lineage-rpg\r\n```\r\nor\r\n```\r\npip3 install --user lineage-rpg\r\n```\r\n\r\n---\r\n\r\n### Step 3: Upgrade to the latest version\r\n\r\n`pip install --upgrade lineage-rpg`  \r\n\r\nor  \r\n`python -m pip install --upgrade lineage-rpg`\r\n\r\nor  \r\n`pip3 install --upgrade lineage-rpg`\r\n\r\nor  \r\n`python3 -m pip install --upgrade lineage-rpg`\r\n\r\n---\r\n\r\n## \ud83d\udd79\ufe0f How to Play\r\n\r\nOnce installed, launch the game from your terminal using:  \r\n`lineage-rpg`\r\n\r\nIf that doesn't work, try:  \r\n`python -m lineage_rpg`  \r\n`python3 -m lineage_rpg`  \r\n`py -m lineage_rpg`\r\n\r\nYou'll see:  \r\n`Welcome to Lineage RPG! Type 'exit' or CTRL+C to quit.`\r\n\r\nThen, type `help` and press ENTER. You'll see a list of commands to start playing.\r\n\r\n---\r\n\r\n## \u2753 Troubleshooting\r\n\r\n### Installation Issues\r\n* **\"Command not found\" or \"'pip' is not recognized\"**: Make sure Python and pip are correctly installed and added to your PATH. Try:  \r\n  `python -m pip install lineage-rpg`\r\n* **Permission denied**: Use:  \r\n  `pip install --user lineage-rpg`  \r\n  or run as administrator/sudo.\r\n\r\n### Launch Issues\r\n* **\"lineage-rpg\" command not found**: Try these alternatives:  \r\n  `python -m lineage_rpg`  \r\n  `python3 -m lineage_rpg`  \r\n  `py -m lineage_rpg`  \r\n  `python -m lineage_rpg.main`\r\n\r\n### Game Issues\r\n* **Corrupted save file**: The game will automatically reset and start fresh if your save file is corrupted.  \r\n* **Game doesn't respond**: Use `Ctrl+C` to safely exit and save your progress.\r\n\r\n**Still having issues?** Make sure you're using Python 3.8+ and have sufficient disk space.\r\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "An interactive CLI RPG game.",
    "version": "0.0.50",
    "project_urls": null,
    "split_keywords": [
        "rpg",
        " cli",
        " game",
        " fun"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "072919a1fb3dbd53ae419d2990c82bc06b30d2c2877dfb4db025ae6050113e64",
                "md5": "fb79b0716b2360ebf983de94af1cd225",
                "sha256": "1ec10b89c9286cb524f91566d2dffd4682d4e560b8f0f4dedc14b23548960d40"
            },
            "downloads": -1,
            "filename": "lineage_rpg-0.0.50-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "fb79b0716b2360ebf983de94af1cd225",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 16137,
            "upload_time": "2025-08-22T19:30:46",
            "upload_time_iso_8601": "2025-08-22T19:30:46.915805Z",
            "url": "https://files.pythonhosted.org/packages/07/29/19a1fb3dbd53ae419d2990c82bc06b30d2c2877dfb4db025ae6050113e64/lineage_rpg-0.0.50-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5cca1d9e7e8fb9bb29ec8f8714631f9d49df4e34455cc8fde6ae20f805c66b1a",
                "md5": "b44fadc4f4b01b8def6894125e4d5485",
                "sha256": "e054aca6d661aa24a347dd92b600703f71abcc67e4b39f42efcace42f29b1caf"
            },
            "downloads": -1,
            "filename": "lineage_rpg-0.0.50.tar.gz",
            "has_sig": false,
            "md5_digest": "b44fadc4f4b01b8def6894125e4d5485",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 12752,
            "upload_time": "2025-08-22T19:30:47",
            "upload_time_iso_8601": "2025-08-22T19:30:47.749175Z",
            "url": "https://files.pythonhosted.org/packages/5c/ca/1d9e7e8fb9bb29ec8f8714631f9d49df4e34455cc8fde6ae20f805c66b1a/lineage_rpg-0.0.50.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-22 19:30:47",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "lineage-rpg"
}
        
Elapsed time: 1.12582s