https://github.com/wasabina67/helloworld-python
Hello, World! in Python
https://github.com/wasabina67/helloworld-python
pipenv pyenv pyinstaller
Last synced: about 1 month ago
JSON representation
Hello, World! in Python
- Host: GitHub
- URL: https://github.com/wasabina67/helloworld-python
- Owner: wasabina67
- License: mit
- Created: 2024-09-06T04:10:07.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-09-09T00:06:27.000Z (8 months ago)
- Last Synced: 2025-01-30T16:19:03.963Z (3 months ago)
- Topics: pipenv, pyenv, pyinstaller
- Language: Python
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# helloworld-python
Hello, World! in Python## Setup
```bash
pipenv shell
``````bash
pipenv sync
```## Build
```bash
make build
```## Run
```bash
./dist/helloworld
```### Download from GitHub releases
- v1
```bash
curl -L -o helloworld https://github.com/wasabina67/helloworld-python/releases/download/v1/helloworld && \
chmod +x helloworld
```- latest
```bash
curl -L -o helloworld https://github.com/wasabina67/helloworld-python/releases/latest/download/helloworld && \
chmod +x helloworld
```### Run
```bash
./helloworld
```