An open API service indexing awesome lists of open source software.

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

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
```