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 684713b commit 9618d4aCopy full SHA for 9618d4a
README.md
@@ -16,8 +16,18 @@ git clone git@github.com:simpleapples/pdf2word.git
16
```python
17
cd pdf2word
18
python3 -m venv venv
19
+
20
+# Linux
21
source venv/bin/activate
22
23
+# Windows
24
+venv\Scripts\activate
25
26
+# Python < 3.10
27
pip install -r requirements.txt
28
29
+# Python 3.10 or later
30
+pip install -r requirements_3_10.txt
31
```
32
33
* 修改config.cfg文件,指定存放pdf和word文件的文件夹,以及同时工作的进程数
requirements_3.10.txt renamed to requirements_3_10.txt
0 commit comments