main
Tran Hau 2020-06-09 00:41:48 +07:00
parent 8d45d414ee
commit 23715a88fd
4 changed files with 22 additions and 4 deletions

View File

@ -16,6 +16,12 @@ export HISTCONTROL=ignoreboth:erasedups
export HISTIGNORE="cd:cd *:ls:ls *:pwd:exit" export HISTIGNORE="cd:cd *:ls:ls *:pwd:exit"
``` ```
Shebang:
```sh
#!/usr/bin/env bash
```
## Bash completion ## Bash completion
| Distribution | Package | | Distribution | Package |

View File

@ -0,0 +1,13 @@
# Python
| Distribution | Package |
| ------------ | --------- |
| Arch Linux | `python` |
| Ubuntu | `python3` |
| Homebrew | `python3` |
Shebang:
```sh
#!/usr/bin/env python3
```

View File

@ -1,6 +1,4 @@
# Python # venv
## venv
Python venv is Python Virtual Environment. Python venv is Python Virtual Environment.
Why do we need to use Python venv? Why do we need to use Python venv?

View File

@ -36,7 +36,8 @@
- [Go](Development/go/README.md) - [Go](Development/go/README.md)
- [time](Development/go/time.md) - [time](Development/go/time.md)
- [testing](Development/go/testing.md) - [testing](Development/go/testing.md)
- [Python](Development/python.md) - [Python](Development/python/README.md)
- [venv](Development/python/venv.md)
- [Docker](Development/docker.md) - [Docker](Development/docker.md)
- [Redis](Development/redis.md) - [Redis](Development/redis.md)
- [Prometheus](Development/prometheus.md) - [Prometheus](Development/prometheus.md)