We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef4be49 commit 6bf9876Copy full SHA for 6bf9876
README.md
@@ -38,7 +38,13 @@ bcloud 是[百度网盘](http://pan.baidu.com)的Linux桌面客户端.
38
```
39
python3 setup.py install
40
41
+卸载执行:
42
+```bash
43
+python setup.py install --record files.txt #记录安装后文件的路径
44
45
+cat files.txt | xargs rm -rf #删除这些文件
46
+```
47
+**最近有不少用户反馈安装后无法启动,原因大多数是因为缺少某些依赖的模块。我已经添加了部分依赖到requiements.txt文件中。如还有报错请大家issues的时候附上log**
48
49
Q&A
50
===
requirements.txt
@@ -1,2 +1,3 @@
1
keyring
2
pycrypto==2.6.1
3
+lxml
0 commit comments