我目前正在尝试遵循CumulusCi的指南,但在我的计算机中安装pipx时遇到了一些问题。
我已经安装了Python 3,目前正在运行以下命令:
pip install --user pipx
'''
The result is the following:
已满足要求:
pipx in c:\users\aharo\appdata\roaming\python\python39\site-packages (0.16.1.0)
我设置了path环境变量,当我运行pipx list时,它会告诉我以下信息:
pipx : The term 'pipx' is not recognized as the name of a cmdlet, function, script file, or operable program. Check
the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ pipx list
+ ~~~~
+ CategoryInfo : ObjectNotFound: (pipx:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
有人知道如何解决这个问题吗?
发布于 2021-03-27 20:40:45
我也有同样的问题,但快速的解决办法是以py -m pipx list
身份运行它。我猜,它是安装到另一个文件夹,由于windows...
https://stackoverflow.com/questions/66822627
复制相似问题