https://github.com/noclin/pypi-faker
Generate mock PyPI packages to bypass the installation of specific packages
https://github.com/noclin/pypi-faker
Last synced: 7 months ago
JSON representation
Generate mock PyPI packages to bypass the installation of specific packages
- Host: GitHub
- URL: https://github.com/noclin/pypi-faker
- Owner: NoCLin
- Created: 2024-03-25T12:29:15.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-03-30T07:56:18.000Z (over 1 year ago)
- Last Synced: 2025-01-21T14:17:32.721Z (9 months ago)
- Language: JavaScript
- Homepage: https://pypi-faker.vercel.app
- Size: 2.07 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pypi Faker
This project aims to generate mock PyPI packages
to bypass the installation of specific packages.This can be particularly helpful when you need to install a package
that has numerous dependencies, but you wish to exclude certain packages from the installation process.## Usage
```
pip uninstall -y torch
pip install https://pypi-faker.homeinfra.org/targz/torch/2.0
pip install https://pypi-faker.homeinfra.org/targz/torchvision/0.17
# or use the following one
pip install "torch==2.0.0" "torchvision==0.17" -i https://pypi-faker.homeinfra.org# verify the installed fake package
pip list | grep torch```