Fava & Beancount 安装
Fava & Beancount 安装

Fava & Beancount 安装

使用 python3 安装,如果没有 pip3,需要先安装,当然我也没研究是否强制使用 3 版本。
sudo pip3 install beancount sudo pip3 install fava
 

问题

  1. ERROR launchpadlib 1.10.6 requires testresources which is not installed
sudo apt install python3-testresources
  1. ERROR: flask 2.0.3 has requirement click>=7.1.2, but you'll have click 7.0 which is incompatible.
sudo pip3 install click==7.1.2
  1. OpenSSL.SSL.WantReadError 或者 Could not find a version that satisfies....
使用国内镜像。
Linux下,修改 ~/.pip/pip.conf (没有就创建一个文件夹及文件。文件夹要加“.”,表示是隐藏文件夹)
内容如下:
[global] trusted-host=mirrors.aliyun.com index-url=http://mirrors.aliyun.com/pypi/simple/
windows下,直接在user目录中创建一个pip目录,如:C:\Users\xx\pip,新建文件pip.ini。内容同上。

参考