Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ijknabla/wenbed
python embed for windows generator
https://github.com/ijknabla/wenbed
Last synced: 3 days ago
JSON representation
python embed for windows generator
- Host: GitHub
- URL: https://github.com/ijknabla/wenbed
- Owner: ijknabla
- License: mit
- Created: 2023-04-06T07:10:36.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-12T04:34:58.000Z (3 days ago)
- Last Synced: 2024-11-12T05:17:09.073Z (3 days ago)
- Language: Python
- Size: 47.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wenbed
python embed for windows generator# run
```
curl -sSL https://raw.githubusercontent.com/ijknabla/wenbed/main/wenbed.py \
| python - ${OPTIONS} ${ARGUMENTS}
``````
wget https://raw.githubusercontent.com/ijknabla/wenbed/main/wenbed.py -q -O- \
| python - ${OPTIONS} ${ARGUMENTS}
``````
(Invoke-WebRequest -Uri https://raw.githubusercontent.com/ijknabla/wenbed/main/wenbed.py -UseBasicParsing).Content `
| python - ${OPTIONS} ${ARGUMENTS}
```# Options & Arguments
```
usage: wenbed [-h] [-o [OUTPUT]] [-v] platform [pip_argument ...]positional arguments:
platform
pip_argumentoptions:
-h, --help show this help message and exit
-o [OUTPUT], --output [OUTPUT]
-v, --verbose
```# Example
## Install numpy into python 3.9.0 (64-bit) & 3.10.0 (64-bit)
```
(Invoke-WebRequest -Uri https://raw.githubusercontent.com/ijknabla/wenbed/main/wenbed.py -UseBasicParsing).Content `
| python - 3.9.0-amd64,3.10.0-amd64 -- install numpy
```