Skip to main content

Install wgpu-native

Project description

wgpu-native-installer

Install wgpu-native

PyPI PyPI

Introduction

Install the GitHub assets from gfx-rs/wgpu-native.

The installer has additional options to customize the installation.

Installation

Choose one of the following methods:

  1. Install the package from PyPI:

    Website link

    pip install wgpu-native-installer
    
  2. Install the package from GitHub:

    Website link

    curl -LO $ASSET_URL_ends_with_whl
    pip install *.whl
    

Usage

Choose one of the following methods. It depends on your requirements.

  1. Download the artifacts of wgpu-native on your machine:

    python -m wgpu_native_installer -v
    ls -l
    # c++ -L. -lwgpu_native ....
    
  2. Import the CLI as a package:

    from asyncio import run
    from wgpu_native_installer import main_async as install_wgpu_native
    
    if __name__ == "__main__":
        run(install_wgpu_native(["-vv", "--library", "dynamic", "static"]))
    
  3. Clone the repository and reuse the codes you like:

    git clone https://github.com/AsherJingkongChen/wgpu-native-installer.git
    
    from asyncio import run
    from wgpu_native_installer.github_release import parse_release_latest
    from wgpu_native_installer.unzip import extract_filter
    
    async def main_async():
        release = await parse_release_latest("pytorch", "pytorch")
        asset = release.search_assets(r".*\.tar\.gz")
        await asset.download("pytorch-latest.tar.gz")
    
    if __name__ == "__main__":
        run(main_async())
    

Details

Goals

As one of my Python package templates, it should be TSPC-compliant.

  • Tested
  • Simple
  • Performant
  • Customizable

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

wgpu_native_installer-0.0.0-py3-none-any.whl (16.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page