# Python Summary: Work with Python. ## Available Commands ### pip Use the pip command. Argument is the package name. - `op` (str): The operation; `install` (the default) or `remove`. - `upgrade` (bool): Upgrade the package. - `venv` (str): The name of the virtual environment to use. - `version` (int): The pip version to use. Default `3` ```ini [install django] pip: django cd: /path/to/project venv: python ``` ### pip_file Alias: pipf Install packages from a pip file. - `venv` (str): The name of the virtual environment to use. - `version` (int): The pip version to use. Default `3` ```ini [install dependencies] pip_file: deploy/packages/testing.pip cd: path/to/project venv: python ``` ### virtualenv Create a python virtual environment. Argument is the environment name. ```ini [create the virtual environment] virtualenv: python cd: /path/to/project ```