huggingface-cli: command not found

安装

pip  install huggingface_hub

运行

huggingface-cli login

报错

在这里插入图片描述

查看

pip list

huggingface-cli: command not found_第1张图片
已安装,那就是环境变量问题

解决办法

# linux or mac
echo "export PATH=\"`python3 -m site --user-base`/bin:\$PATH\"" >> ~/.bashrc
source ~/.bashrc

再次运行

在这里插入图片描述

成功!

参考

StackOverflow
github issues

你可能感兴趣的:(AIGC,linux,python)