0.16.2.1
- Changed non-venv-info warnings and notices from
pipx listto print to stderr. This especially preventspipx list --jsonfrom printing invalid json to stdout. (#680) - Fixed bug that could cause uninstall on Windows with injected packages to uninstall too many apps from the local binary directory. (#679)
0.16.2.0
- Fixed bug #670 where uninstalling a venv could erroneously uninstall other apps from the local binary directory. (#672)
- Added
--jsonswitch topipx listto output rich json-metadata for all venvs. - Ensured log files are utf-8 encoded to preven Unicode encoding errors from occurring with emojis. (#646)
- Fixed issue which made pipx incorrectly list apps as part of a venv when they were not installed by pipx. (#650)
- Fixed old regression that would prevent pipx uninstall from cleaning up linked binaries if the venv was old and did not have pipx metadata. (#651)
- Fixed bugs with suffixed-venvs on Windows. Now properly summarizes install, and actually uninstalls associated binaries for suffixed-venvs. (#653)
- Changed venv minimum python version to 3.6, removing python 3.5 which is End of Life. (#666)
0.16.1.0
- Introduce the
pipx.runentry point group as an alternative way to declare an application forpipx run. - Fix cursor show/hide to work with older versions of Windows. (#610)
- Support text colors on Windows. (#612)
- Better platform unicode detection to avoid errors and allow showing emojis when possible. (#614)
- Don't emit show cursor or hide cursor codes if STDERR is not a tty. (#620)
- Sped up
pipx list(#624). - pip errors no longer stream to the shell when pip fails during a pipx install. pip's output is now saved to a log file. In the shell, pipx will tell you the location of the log file and attempt to summarize why pip failed. (#625)
- For
reinstall-all, fixed bug where missing python executable would cause error. (#634) - Fix regression which prevented pipx from working with pythonloc (and
__pypackages__folder). (#636)
0.16.0.0
- New venv inspection! The code that pipx uses to examine and determine metadata in an installed venv has been made faster, better, and more reliable. It now uses modern python libraries like
packagingandimportlib.metadatato examine installed venvs. It also now properly handles installed package extras. In addition, some problems pipx has had with certain characters (like periods) in package names should be remedied. - Added reinstall command for reinstalling a single venv.
- Changed
pipx runon non-Windows systems to actually replace pipx process with the app process instead of running it as a subprocess. (Now using python'sos.exec*) - [bugfix] Fixed bug with reinstall-all command when package have been installed using a specifier. Now the initial specifier is used.
- [bugfix] Override display of
PIPX_DEFAULT_PYTHONvalue when generating web documentation forpipx install#523 - [bugfix] Wrap help documentation for environment variables.
- [bugfix] Fixed uninstall crash that could happen on Windows for certain packages
- [feature] Venv package name arguments now do not have to match exactly as pipx has them stored, but can be specified in any python-package-name-equivalent way. (i.e. case does not matter, and
.,-,_characters are interchangeable.) - [change] Venvs with a suffix: A suffix can contain any characters, but for purposes of uniqueness, python package name rules apply--upper- and lower-case letters are equivalent, and any number of
.,-, or_characters in a row are equivalent. (e.g. if you have a suffixed venvpylint_1.0Ayou could not add another suffixed venv calledpylint--1-0a, as it would not be a unique name.) - [implementation detail] Pipx shared libraries (providing pip, setuptools, wheel to pipx) are no longer installed using pip arguments taken from the last regular pipx install. If you need to apply pip arguments to pipx's use of pip for its internal shared libraries, use PIP_* environment variables.
- [feature] Autocomplete for venv names is no longer restricted to an exact match to the literal venv name, but will autocomplete any logically-similar python package name (i.e. case does not matter, and
.,-,_characters are all equivalent.) - pipx now reinstalls its internal shared libraries when the user executes
reinstall-all. - Made sure shell exit codes from every pipx command are correct. In the past some (like from
pipx upgrade) were wrong. The exit code frompipx runpipis now the exit code from thepipcommand run. The exit code frompipx listwill be 1 if one or more venvs have problems that need to be addressed. - pipx now writes a log file for each pipx command executed to
$PIPX_HOME/logs, typically~/.local/pipx/logs. pipx keeps the most recent 10 logs and deletes others. pipx upgradeandpipx upgrade-allnow have a--upgrade-injectedoption which directs pipx to also upgrade injected packages.pipx listnow detects, identifies, and suggests a remedy for venvs with old-internal data (internal venv names) that need to be updated.- Added a "Troubleshooting" page to the pipx web documentation for common problems pipx users may encounter.
- pipx error, warning, and other messages now word-wrap so words are not split across lines. Their appearance is also now more consistent.
0.15.6.0
- [docs] Update license
- [docs] Display a more idiomatic command for registering completions on fish.
- [bugfix] Fixed regression in list, inject, upgrade, reinstall-all commands when suffixed packages are used.
- [bugfix] Do not reset package url during upgrade when main package is
pipx - Updated help text to show description for
ensurepathandcompletionshelp - Added support for user-defined default python interpreter via new
PIPX_DEFAULT_PYTHON. Helpful for use with pyenv among other uses. - [bugfix] Fixed bug where extras were ignored with a PEP 508 package specification with a URL.
0.15.5.1
- [bugfix] Fixed regression of 0.15.5.0 which erroneously made installing from a local path with package extras not possible.
0.15.5.0
- pipx now parses package specification before install. It removes (with warning) the
--editableinstall option for any package specification that is not a local path. It also removes (with warning) any environment markers. - Disabled animation when we cannot determine terminal size or if the number of columns is too small. (Fixes #444)
- [feature] Version of each injected package is now listed after name for
pipx list --include-injected - Change metadata recorded from version-specified install to allow upgrades in future. Adds pipx dependency on
packagingpackage. - [bugfix] Prevent python error in case where package has no pipx metadata and advise user how to fix.
- [feature]
ensurepathnow also ensures that pip user binary path containing pipx itself is in user's PATH if pipx was installed usingpip install --user. - [bugfix] For
pipx install, fixed failure to install if user hasPIP_USER=1oruser=truein pip.conf. (#110) - [bugfix] Requiring userpath v1.4.1 or later so ensure Windows bug is fixed for
ensurepath(#437) - [feature] log pipx version (#423)
- [feature]
--suffixoption forinstallto allow multiple versions of same tool to be installed (#445) - [feature] pipx can now be used with the Windows embeddable Python distribution
0.15.4.0
- [feature]
listnow has a new option--include-injectedto show the injected packages in the main apps - [bugfix] Fixed bug that can cause crash when installing an app
0.15.3.1
- [bugfix] Workaround multiprocessing issues on certain platforms (#229)
0.15.3.0
- [feature] Use symlinks on Windows when symlinks are available
0.15.2.0
- [bugfix] Improved error reporting during venv metadata inspection.
- [bugfix] Fixed incompatibility with pypy as venv interpreter (#372).
- [bugfix] Replaced implicit dependency on setuptools with an explicit dependency on packaging (#339).
- [bugfix] Continue reinstalling packages after failure
- [bugfix] Hide cursor while pipx runs
- [feature] Add environment variable
USE_EMOJIto allow enabling/disabling emojis (#376) - [refactor] Moved all commands to separate files within the commands module (#255).
- [bugfix] Ignore system shared libraries when installing shared libraries pip, wheel, and setuptools. This also fixes an incompatibility with Debian/Ubuntu's version of pip (#386).
0.15.1.3
- [bugfix] On Windows, pipx now lists correct Windows apps (#217)
- [bugfix] Fixed a
pipx installbug causing incorrect python binary to be used when using the optional --python argument in certain situations, such as running pipx from a Framework python on macOS and specifying a non-Framework python.
0.15.1.2
- [bugfix] Fix recursive search of dependencies' apps so no apps are missed.
upgrade-allnow skips editable packages, because pip disallows upgrading editable packages.
0.15.1.1
- [bugfix] fix regression that caused installing with --editable flag to fail package name determination.
0.15.1.0
- Add Python 3.8 to PyPI classifier and travis test matrix
- [feature] auto-upgrade shared libraries, including pip, if older than one month. Hide all pip warnings that a new version is available. (#264)
- [bugfix] pass pip arguments to pip when determining package name (#320)
0.15.0.0
Upgrade instructions: When upgrading to 0.15.0.0 or above from a pre-0.15.0.0 version, you must re-install all packages to take advantage of the new persistent pipx metadata files introduced in this release. These metadata files store pip specification values, injected packages, any custom pip arguments, and more in each main package's venv. You can do this by running pipx reinstall-all or pipx uninstall-all, then reinstalling manually.
installnow has no--specoption. You may specify any valid pip specification forinstall's main argument.injectwill now accept pip specifications for dependency arguments- Metadata is now stored for each application installed, including install options like
--spec, and injected packages. This information allows upgrade, upgrade-all and reinstall-all to work properly even with non-pypi installed packages. (#222) upgradeoptions--specand--include-depswere removed. Pipx now uses the original options used to install each application instead. (#222)upgrade-alloptions--include-deps,--system-site-packages,--index-url,--editable, and--pip-argswere removed. Pipx now uses the original options used to install each application instead. (#222)reinstall-alloptions--include-deps,--system-site-packages,--index-url,--editable, and--pip-argswere removed. Pipx now uses the original options used to install each application instead. (#222)- Handle missing interpreters more gracefully (#146)
- Change
reinstall-allto use system python by default for apps. Now use--pythonoption to specify a different python version. - Remove the PYTHONPATH environment variable when executing any command to prevent conflicts between pipx dependencies and package dependencies when pipx is installed via homebrew. Homebrew can use PYTHONPATH manipulation instead of virtual environments. (#233)
- Add printed summary after successful call to
pipx inject - Support associating apps with Python 3.5
- Improvements to animation status text
- Make
--pythonargument inreinstall-allcommand optional - Use threads on OS's without support for semaphores
- Stricter parsing when passing
--argument as delimiter
0.14.0.0
- Speed up operations by using shared venv for
pip,setuptools, andwheel. You can see more detail in the 'how pipx works' section of the documentation. (#164, @pfmoore) - Breaking change: for the
injectcommand, change--include-binariesto--include-apps - Change all terminology from
binarytoapporapplication - Improve argument parsing for
pipx runandpipx runpip - If
--forceis passed, remove existing files in PIPX_BIN_DIR - Move animation to start of line, hide cursor when animating
0.13.2.3
- Fix regression when installing a package that doesn't have any entry points
0.13.2.2
- Remove unnecessary and sometimes incorrect check after
pipx inject(#195) - Make status text/animation reliably disappear before continuing
- Update animation symbols
0.13.2.1
- Remove virtual environment if installation did not complete. For example, if it was interrupted by ctrl+c or if an exception occurred for any reason. (#193)
0.13.2.0
- Add shell autocompletions. Also add
pipx completionscommand to print instructions on how to add pipx completions to your shell. - Un-deprecate
ensurepath. Useuserpathinternally instead of instructing users to run theuserpathcli command. - Improve detection of PIPX_BIN_DIR not being on PATH
- Improve error message when an existing symlink exists in PIPX_BIN_DIR and points to the wrong location
- Improve handling of unexpected files in PIPX_HOME (@uranusjr)
- swap out of order logic in order to correctly recommend --include-deps (@joshuarli)
- [dev] Migrate from tox to nox
0.13.1.1
- Do not raise bare exception if no binaries found (#150)
- Update pipsi migration script
0.13.1.0
- Deprecate
ensurepathcommand. Useuserpath append ~/.local/bin - Support redirects and proxies when downloading python files (i.e.
pipx run http://url/file.py) - Use tox for document generation and CI testing (CI tests are now functional rather than static tests on style and formatting!)
- Use mkdocs for documentation
- Change default cache duration for
pipx runfrom 2 to 14 days
0.13.0.1
- Fix upgrade-all and reinstall-all regression
0.13.0.0
- Add
runpipcommand to run arbitrary pip commands in pipx-managed virtual environments - Do not raise error when running
pipx install PACKAGEand the package has already been installed by pipx (#125). This is the cause of the major version change from 0.12 to 0.13. - Add
--skipargument toupgrade-allandreinstall-allcommands, to let the user skip particular packages
0.12.3.3
- Update logic in determining a package's binaries during installation. This removes spurious binaries from the installation. (#104)
- Improve compatibility with Debian distributions by using
shutil.whichinstead ofdistutils.spawn.find_executable(#102)
0.12.3.2
- Fix infinite recursion error when installing package such as
cloudtoken==0.1.84(#103) - Fix windows type errors (#96, #98)
0.12.3.1
- Fix "WindowsPath is not iterable" bug
0.12.3.0
- Add
--include-depsargument to include binaries of dependent packages when installing with pipx. This improves compatibility with packages that depend on other installed packages, such asjupyter. - Speed up
pipx listoutput (by running multiple processes in parallel) and by collecting all metadata in a single subprocess call - More aggressive cache directory removal when
--no-cacheis passed topipx run - [dev] Move inline text passed to subprocess calls to their own files to enable autoformatting, linting, unit testing
0.12.2.0
- Add support for PEP 582's
__pypackages__(experimental).pipx run BINARYwill first search in__pypackages__for binary, then fallback to installing from PyPI.pipx run --pypackages BINARYwill raise an error if the binary is not found in__pypackages__. - Fix regression when installing with
--editableflag (#93) - [dev] improve unit tests
0.12.1.0
- Cache and reuse temporary Virtual Environments created with
pipx run(#61) - Update binary discovery logic to find "scripts" like awscli (#91)
- Forward
--pip-argsto the pip upgrade command (previously the args were forwarded to install/upgrade commands for packages) (#77) - When using environment variable PIPX_HOME, Virtual Environments will now be created at
$PIPX_HOME/venvsrather than at$PIPX_HOME. - [dev] refactor into multiple files, add more unit tests
0.12.0.4
- Fix parsing bug in pipx run
0.12.0.3
- list python2 as supported language so that pip installs with python2 will no longer install the pipx on PyPI from the original pipx owner. Running pipx with python2 will fail, but at least it will not be as confusing as running the pipx package from the original owner.
0.12.0.2
- forward arguments to run command correctly #90
0.12.0.1
- stop using unverified context #89
0.12.0.0
- Change installation instructions to use
pipxPyPI name - Add
ensurepathcommand
0.11.0.2
- add version argument parsing back in (fixes regression)
0.11.0.1
- add version check, command check, fix printed version update installation instructions
0.11.0.0
- Replace
pipx BINARYwithpipx run BINARYto run a binary in an ephemeral environment. This is a breaking API change so the major version has been incremented. (Issue #69) - upgrade pip when upgrading packages (Issue #72)
- support --system-site-packages flag (Issue #64)
0.10.4.1
- Fix version printed when
pipx --versionis run
0.10.4.0
- Add --index-url, --editable, and --pip-args flags
- Updated README with pipsi migration instructions
0.10.3.0
- Display python version in list
- Do not reinstall package if already installed (added
--forceflag to override) - When upgrading all packages, print message only when package is updated
- Avoid accidental execution of pipx.main