#How to troubleshoot this python package "installing"?

2 messages · Page 1 of 1 (latest)

naive totem
#

I'm trying to install a program called mmemoji, which uses a very basic "pip install mmemoji"
I've got no experience with this package, so maybe it just doesn't work
I might have a weird python set up, different college classes have had me over time download different python and java libraries, tools, and IDE's, and I don't understand what I did or didn't create
When I install normally "pip install mmemoji", I get an error about the path not being set properly
I added path to my .bashrc as [export PATH="/usr/local/bin:$PATH"]. Reloaded terminal, and mmemoji --help still returns command not found
I tried using the -t flag:
"-t=/home/james/=/usr/lib/python3.10/site-packages/mmemoji", thinking that would be helpful, or a workaround, same behavior persists.

#

If its not installed, this is the output of a normal install attempt

[james@archdesktop ~]$ pip install mmemoji
Defaulting to user installation because normal site-packages is not writeable
Collecting mmemoji
  Using cached mmemoji-0.4.0-py3-none-any.whl (24 kB)
Requirement already satisfied: Unidecode>=0.04.1 in ./.local/lib/python3.10/site-packages (from mmemoji) (1.3.6)
Requirement already satisfied: requests>=2.19.0 in /usr/lib/python3.10/site-packages (from mmemoji) (2.28.1)
Requirement already satisfied: mattermostdriver>=6.1.2 in ./.local/lib/python3.10/site-packages (from mmemoji) (7.3.2)
Requirement already satisfied: mypy-extensions>=0.4.3 in /usr/lib/python3.10/site-packages (from mmemoji) (0.4.3)
Requirement already satisfied: click>=8.0.0 in /usr/lib/python3.10/site-packages (from mmemoji) (8.1.3)
Requirement already satisfied: tabulate>=0.7.3 in ./.local/lib/python3.10/site-packages (from mmemoji) (0.9.0)
Requirement already satisfied: websockets>=8 in /usr/lib/python3.10/site-packages (from mattermostdriver>=6.1.2->mmemoji) (10.4)
Requirement already satisfied: idna<4,>=2.5 in /usr/lib/python3.10/site-packages (from requests>=2.19.0->mmemoji) (3.4)
Requirement already satisfied: urllib3<1.27,>=1.21.1 in /usr/lib/python3.10/site-packages (from requests>=2.19.0->mmemoji) (1.26.12)
Installing collected packages: mmemoji
  WARNING: The script mmemoji is installed in '/home/james/.local/bin' which is not on PATH.
  Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
Successfully installed mmemoji-0.4.0