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
- Host: GitHub
- URL: https://github.com/rurumimic/python
- Owner: rurumimic
- Created: 2020-12-13T11:37:01.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-02-21T12:08:05.000Z (almost 2 years ago)
- Last Synced: 2025-01-03T08:29:09.398Z (about 1 year ago)
- Topics: autoenv, conda, devcontainer, pyenv, virtualenv, vscode
- Language: Python
- Homepage:
- Size: 53.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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!
```