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

https://github.com/rurumimic/python

how to set up damn python environments
https://github.com/rurumimic/python

autoenv conda devcontainer pyenv virtualenv vscode

Last synced: 4 months ago
JSON representation

how to set up damn python environments

Awesome Lists containing this project

README

          

# Python

## Docs

- [install](docs/install.md): pyenv, pyenv-virtualenv, autoenv, pyvim
- [pyenv](docs/pyenv.md)
- [conda](docs/conda.md): miniconda, conda env
- [poetry](docs/poetry.md): zsh
- [jupyter](docs/jupyter.md)

## Code

### Hello, World!

- [src/helloworld](src/helloworld)
- [helloworld/__main__.py](src/helloworld/helloworld/__main__.py)

```bash
cd src/helloworld
python -m helloworld

Hello, World!
```