Questions tagged [pipx]

Use for questions about the pipx installer, which is for installing Python applications in isolated environments

pipx is a tool for installing applications written in Python. It's closely related to pip, it uses , but focuses on installing and managing command line Python packages that can be run directly as applications.

pipx can be installed from PyPI or using brew.

42 questions
0
votes
1 answer

Create a poetry pypi project & install it with pipx

I have a python project that I have uploaded to pypi, and now I am attempting to install it with pipx: pipx install dup-hawk however, I'm getting: No apps associated with package dup-hawk. Try again with '--include-deps' to include apps of…
Patrick Collins
  • 5,621
  • 3
  • 26
  • 64
0
votes
0 answers

Pipx created binary errors out: `module not found`

I have a multi-file system which all depend on each other. An example is this import get_all_files as file_system in the main.py file. Setups followed Create a setup.py with the configurations from setuptools import setup setup( name='name', …
0
votes
2 answers

ModuleNotFoundError when installing a package with entry points using pipx

I'm writing a python package that I would like to distribute as a standalone terminal app. The structure of the project folder is the following: energy-monitor/ config/ doc/ tests/ energymonitor/ __init__.py -> (empty) main.py -> def…
0
votes
0 answers

How is .local folder created with pipx in MSYS2?

I'm using MSYS2 on Windows and trying to install conan package manager through pipx. I'm using pipx since it is creating conan.exe after installation in .local folder in: C:/Users/MyUser/.local/bin I had to reinstall MSYS2 and remove the folders…
Solk
  • 1
  • 1
0
votes
0 answers

How do I update Windows Environment Variables to use pipx

I've installed pipx using command: python -m pip install --user pipx (instructions: https://pypi.org/project/pipx/) When I try to run it, I get the error: 'pipx' is not recognized as an internal or external command, operable program or batch…
JimmyTheCode
  • 3,783
  • 7
  • 29
  • 71
0
votes
0 answers

How to execute a python wheel developed using Poetry?

I have a poetry application and in poetry, one can set any python version in pyproject.toml. Once a wheel is built using poetry, I would like to share this to our users.Then, my users can execute this wheel similar to how they execute an exe in…
Selva
  • 951
  • 7
  • 23
0
votes
2 answers

Install black with pipx not install dependencies aiohttp

On MacOs I've installed with brew the pipx: brew install pipx then pipx install black $ pipx list venvs are in /Users/mc/.local/pipx/venvs apps are exposed on your $PATH at /Users/mc/.local/bin package…
mCs
  • 2,591
  • 6
  • 39
  • 66
0
votes
1 answer

I can't install eth-brownie on windows

I also installed microsoft c++ 14.... but i really don't know how to get around this Here is the error: Fatal error from pip prevented installation. Full pip output in file: …
Tulli
  • 19
  • 3
0
votes
1 answer

'pipx install gvsbuild' successful but won't then run 'gvsbuild build gtk3' in powershell

I am following the steps on the github page and am at this step. A search for 'gvsbuild' on my system. Windows PowerShell tried: "gvsbuild build gtk3" expecting gtk3 to be built. result: gvsbuild : The term 'gvsbuild' is not recognized as the name…
0
votes
0 answers

After using pipx to install graphene-django getting No module named 'graphene_django'

I have instlled pipx and successfully run the following... PS C:\Users\oliver\base\forms\forms> pipx install graphene-django --include-deps ⚠️ Overwriting file C:\Users\oliver\.local\bin\django-admin.exe with…
Mike Oliver
  • 163
  • 1
  • 3
  • 14
0
votes
2 answers

Unable to run brownie from python script and can't run console (Windows VSCode)

If I try to import brownie in python script I get the following: Traceback (most recent call last): File "*filepath*", line 3, in from brownie import * ModuleNotFoundError: No module named 'brownie' If I try to run 'brownie console'…
mojo45
  • 23
  • 3
0
votes
1 answer

Impossible to upgrade Brownie package via pip or pipx command - version still showing 16.4.1 after the upgrade

I am trying to upgrade my version of Brownie, currently v.16.4. I have tries all commands : Pip install --upgrade eth-brownie Pipx upgrade eth-brownie even via commandsetupsand git clone.... I am not having ay issues or errors, each time the…
Chad S
  • 1
0
votes
1 answer

How to completely reinstall pipx

How do I completely reinstall pipx. I have been installed pipx but I am unable to use it to install eth-brownie. I have uninstalled and reinstalled and it seems to still not be working. It seems to still be referencing old files not removed. Any…
0
votes
1 answer

Eth-Brownie Installation error: Tried all 3 methods [linux]

I tried installing brownie via pipx, pip and the github repo , but each time I get this error on running brownie: Traceback (most recent call last): File "/usr/bin/brownie", line 33, in sys.exit(load_entry_point('eth-brownie==1.17.2',…
0
votes
1 answer

pipx install eth-brownie error : Fatal error from pip prevented installation. Full pip output in file:

Hi I am trying to install Brownie but I seem to run into the below issue. C:\Users\gmlad>pipx install eth-brownie Fatal error from pip prevented installation. Full pip output in file: …
Dooovdeh
  • 19
  • 3