more-compute


Namemore-compute JSON
Version 0.3.3 PyPI version JSON
download
home_pagehttps://github.com/DannyMang/MORECOMPUTE
SummaryAn interactive notebook environment for local and GPU computing
upload_time2025-11-01 00:11:34
maintainerNone
docs_urlNone
authorMoreCompute Team
requires_python>=3.8
licenseMIT
keywords jupyter notebook gpu computing interactive
VCS
bugtrack_url
requirements fastapi uvicorn python-multipart nbformat click pyzmq psutil httpx cachetools matplotlib datasets
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # more-compute

[![PyPI version](https://badge.fury.io/py/more-compute.svg)](https://pypi.org/project/more-compute/)
[![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)

An interactive notebook environment, similar to Marimo and Google Colab, that runs locally. It works with standard `.ipynb` files, similar to Jupyter Lab but more awesome.




https://github.com/user-attachments/assets/8c7ec716-dade-4de2-ad37-71d328129c97




## Installation

**Prerequisites:** [Node.js](https://nodejs.org/) >= 20.10.0 required for web interface

### Using uv (Recommended)

```bash
# macOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
uv tool install more-compute

# Windows
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
uv tool install more-compute
```

### Using pip

```bash
pip install more-compute

# Add to PATH if needed:
# macOS/Linux: echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
# Windows: See troubleshooting below
```

## Usage

```bash
more-compute notebook.ipynb  # Open existing notebook
more-compute                 # Create and open new notebook
more-compute --debug         # Show logs
```

Opens automatically at http://localhost:8000

## Troubleshooting

**Command not found:**
```bash
uv tool update-shell  # Fixes PATH automatically
```

**Manual PATH fix (macOS/Linux):**
```bash
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
```

**Manual PATH fix (Windows):**
```powershell
$pythonScripts = python -c "import site; print(site.USER_BASE)"
$userPath = [Environment]::GetEnvironmentVariable("Path", "User")
[Environment]::SetEnvironmentVariable("Path", "$userPath;$pythonScripts\Scripts", "User")
# Restart PowerShell
```

**Port in use:**
```bash
export MORECOMPUTE_PORT=8080  # macOS/Linux
$env:MORECOMPUTE_PORT = "8080"  # Windows
```

## Development

```bash
git clone https://github.com/DannyMang/MORECOMPUTE.git
cd MORECOMPUTE
uv venv && source .venv/bin/activate
uv pip install -e .
cd frontend && npm install && cd ..
python kernel_run.py notebook.ipynb
```

## License

MIT - see [LICENSE](LICENSE)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/DannyMang/MORECOMPUTE",
    "name": "more-compute",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "jupyter, notebook, gpu, computing, interactive",
    "author": "MoreCompute Team",
    "author_email": "MoreCompute Team <hello@morecompute.dev>",
    "download_url": "https://files.pythonhosted.org/packages/d3/43/3019fafdf3a6c6d3fbe259511cb1f29353b8575910215517188b09768d71/more_compute-0.3.3.tar.gz",
    "platform": null,
    "description": "# more-compute\n\n[![PyPI version](https://badge.fury.io/py/more-compute.svg)](https://pypi.org/project/more-compute/)\n[![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)\n\nAn interactive notebook environment, similar to Marimo and Google Colab, that runs locally. It works with standard `.ipynb` files, similar to Jupyter Lab but more awesome.\n\n\n\n\nhttps://github.com/user-attachments/assets/8c7ec716-dade-4de2-ad37-71d328129c97\n\n\n\n\n## Installation\n\n**Prerequisites:** [Node.js](https://nodejs.org/) >= 20.10.0 required for web interface\n\n### Using uv (Recommended)\n\n```bash\n# macOS/Linux\ncurl -LsSf https://astral.sh/uv/install.sh | sh\nuv tool install more-compute\n\n# Windows\npowershell -c \"irm https://astral.sh/uv/install.ps1 | iex\"\nuv tool install more-compute\n```\n\n### Using pip\n\n```bash\npip install more-compute\n\n# Add to PATH if needed:\n# macOS/Linux: echo 'export PATH=\"$HOME/.local/bin:$PATH\"' >> ~/.bashrc\n# Windows: See troubleshooting below\n```\n\n## Usage\n\n```bash\nmore-compute notebook.ipynb  # Open existing notebook\nmore-compute                 # Create and open new notebook\nmore-compute --debug         # Show logs\n```\n\nOpens automatically at http://localhost:8000\n\n## Troubleshooting\n\n**Command not found:**\n```bash\nuv tool update-shell  # Fixes PATH automatically\n```\n\n**Manual PATH fix (macOS/Linux):**\n```bash\necho 'export PATH=\"$HOME/.local/bin:$PATH\"' >> ~/.bashrc\nsource ~/.bashrc\n```\n\n**Manual PATH fix (Windows):**\n```powershell\n$pythonScripts = python -c \"import site; print(site.USER_BASE)\"\n$userPath = [Environment]::GetEnvironmentVariable(\"Path\", \"User\")\n[Environment]::SetEnvironmentVariable(\"Path\", \"$userPath;$pythonScripts\\Scripts\", \"User\")\n# Restart PowerShell\n```\n\n**Port in use:**\n```bash\nexport MORECOMPUTE_PORT=8080  # macOS/Linux\n$env:MORECOMPUTE_PORT = \"8080\"  # Windows\n```\n\n## Development\n\n```bash\ngit clone https://github.com/DannyMang/MORECOMPUTE.git\ncd MORECOMPUTE\nuv venv && source .venv/bin/activate\nuv pip install -e .\ncd frontend && npm install && cd ..\npython kernel_run.py notebook.ipynb\n```\n\n## License\n\nMIT - see [LICENSE](LICENSE)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "An interactive notebook environment for local and GPU computing",
    "version": "0.3.3",
    "project_urls": {
        "Homepage": "https://github.com/DannyMang/MORECOMPUTE",
        "Issues": "https://github.com/DannyMang/MORECOMPUTE/issues",
        "Repository": "https://github.com/DannyMang/MORECOMPUTE"
    },
    "split_keywords": [
        "jupyter",
        " notebook",
        " gpu",
        " computing",
        " interactive"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e1f472ea1b410e01c187f05f6c2ad8bf77d4c7a32c915a22073e3ea0d8b6232a",
                "md5": "1eea9368209fcca434c49d175ce0e720",
                "sha256": "6a0aed4523e9ad2eb659613021ade492662428547843805df55e291c2dea12a3"
            },
            "downloads": -1,
            "filename": "more_compute-0.3.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1eea9368209fcca434c49d175ce0e720",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 419097,
            "upload_time": "2025-11-01T00:11:33",
            "upload_time_iso_8601": "2025-11-01T00:11:33.332838Z",
            "url": "https://files.pythonhosted.org/packages/e1/f4/72ea1b410e01c187f05f6c2ad8bf77d4c7a32c915a22073e3ea0d8b6232a/more_compute-0.3.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d3433019fafdf3a6c6d3fbe259511cb1f29353b8575910215517188b09768d71",
                "md5": "dc31848a222e89c82fc8ceb9f3641803",
                "sha256": "fd5043a1717634903eaf937b789157b11cea7d07bdf733925e237172ba29b556"
            },
            "downloads": -1,
            "filename": "more_compute-0.3.3.tar.gz",
            "has_sig": false,
            "md5_digest": "dc31848a222e89c82fc8ceb9f3641803",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 393679,
            "upload_time": "2025-11-01T00:11:34",
            "upload_time_iso_8601": "2025-11-01T00:11:34.992820Z",
            "url": "https://files.pythonhosted.org/packages/d3/43/3019fafdf3a6c6d3fbe259511cb1f29353b8575910215517188b09768d71/more_compute-0.3.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-11-01 00:11:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "DannyMang",
    "github_project": "MORECOMPUTE",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "fastapi",
            "specs": [
                [
                    ">=",
                    "0.104.0"
                ]
            ]
        },
        {
            "name": "uvicorn",
            "specs": [
                [
                    ">=",
                    "0.24.0"
                ]
            ]
        },
        {
            "name": "python-multipart",
            "specs": [
                [
                    ">=",
                    "0.0.5"
                ]
            ]
        },
        {
            "name": "nbformat",
            "specs": [
                [
                    ">=",
                    "5.0.0"
                ]
            ]
        },
        {
            "name": "click",
            "specs": [
                [
                    ">=",
                    "8.0.0"
                ]
            ]
        },
        {
            "name": "pyzmq",
            "specs": [
                [
                    ">=",
                    "25.0.0"
                ]
            ]
        },
        {
            "name": "psutil",
            "specs": [
                [
                    ">=",
                    "5.9.0"
                ]
            ]
        },
        {
            "name": "httpx",
            "specs": [
                [
                    ">=",
                    "0.24.0"
                ]
            ]
        },
        {
            "name": "cachetools",
            "specs": [
                [
                    ">=",
                    "5.3.0"
                ]
            ]
        },
        {
            "name": "matplotlib",
            "specs": [
                [
                    ">=",
                    "3.5.0"
                ]
            ]
        },
        {
            "name": "datasets",
            "specs": [
                [
                    ">=",
                    "2.14.0"
                ]
            ]
        }
    ],
    "lcname": "more-compute"
}
        
Elapsed time: 2.87932s