mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 13:50:09 +00:00
parent
376beafd17
commit
9c01dbc30b
1 changed files with 12 additions and 13 deletions
|
@ -1,8 +1,8 @@
|
||||||
# python plugin
|
# Python plugin
|
||||||
|
|
||||||
The plugin adds several aliases for useful [python](https://www.python.org/) commands.
|
The plugin adds several aliases for useful [Python](https://www.python.org/) commands.
|
||||||
|
|
||||||
To use it, add `python` to the plugins array of your zshrc file:
|
To use it, add `python` to the plugins array in your zshrc file:
|
||||||
|
|
||||||
```zsh
|
```zsh
|
||||||
plugins=(... python)
|
plugins=(... python)
|
||||||
|
@ -10,16 +10,15 @@ plugins=(... python)
|
||||||
|
|
||||||
## Aliases
|
## Aliases
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
| Command | Description |
|
| Command | Description |
|
||||||
| ---------------- | ------------------------------------------------------------------------------------- |
|
| ---------------- | -------------------------------------------------------------------------------------- |
|
||||||
| `py` | Runs `python` |
|
| `py` | Runs `python` |
|
||||||
| `ipython` | Runs the appropriate `ipython` version according to the activated virtualenv |
|
| `ipython` | Runs the appropriate `ipython` version according to the activated virtualenv |
|
||||||
| `pyfind` | Finds .py files recursively in the current directory |
|
| `pyfind` | Finds .py files recursively in the current directory |
|
||||||
| `pyclean [dirs]` | Deletes byte-code and cache files from a list of directories or the current one |
|
| `pyclean [dirs]` | Deletes byte-code and cache files from a list of directories or the current one |
|
||||||
| `pygrep <text>` | Looks for `text` in .py files |
|
| `pygrep <text>` | Looks for `text` in `*.py` files in the current directory, recursively |
|
||||||
| `pyuserpaths` | Add --user site-packages to PYTHONPATH, for all installed python versions. |
|
| `pyuserpaths` | Add user site-packages folders to `PYTHONPATH`, for Python 2 and 3 |
|
||||||
| `pyserver` | Starts an http.server on the current directory. Use `--directory` for a different one |
|
| `pyserver` | Starts an HTTP server on the current directory (use `--directory` for a different one) |
|
||||||
|
|
||||||
## Virtual environments
|
## Virtual environments
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue