File tree Expand file tree Collapse file tree 1 file changed +22
-9
lines changed
Expand file tree Collapse file tree 1 file changed +22
-9
lines changed Original file line number Diff line number Diff line change @@ -37,33 +37,46 @@ This is by far the most efficient method and the steps are more or less the same
3737
38385 . Update pip and install the required Python libraries:
3939
40- > pip install --upgrade pip
41- >
42- > pip install -r requirements.txt
43- >
44- > pip install pyinstaller
40+ ```
41+ pip install --upgrade pip
42+ ```
43+
44+ ```
45+ pip install -r requirements.txt
46+ ```
47+
48+ ```
49+ pip install pyinstaller
50+ ```
4551
46526 . Have pyinstaller build the backend Django server:
4753
48- > pyinstaller --name=backend --hidden-import backend.urls --distpath ../app --clean --noconfirm manage.py
54+ ```
55+ pyinstaller --name=backend --hidden-import backend.urls --distpath ../app --clean --noconfirm manage.py
56+ ```
4957
50587 . Install yarn.
5159
52608 . Navigate to /app/ and have yarn install the Nodejs libraries:
5361
54- > yarn install
62+ ```
63+ yarn install
64+ ```
5565
56669 . (Windows-specific step) Remove the following line from package.json
5767
5868 > "executableName": "kaplan-desktop",
5969
607010 . Have yarn build the executable:
6171
62- > yarn make
72+ ```
73+ yarn make
74+ ```
6375
647611 . The resulting executable(s) will be under /app/out/
6577
6678## Links:
67791 . [ Kaplan Homepage] ( https://kaplan.pro )
68- 1 . [ Docs] ( https://kaplan.pro/#/ docs )
80+ 1 . [ Docs] ( https://kaplan.pro/docs )
69811 . [ Kaplan Desktop@Microsoft Store] ( https://www.microsoft.com/en-us/p/kaplan-desktop/9nb1v5xzbmx2 )
82+ 1 . [ Kaplan Desktop@Sourceforce] ( https://sourceforge.net/projects/kaplan-desktop/ )
You can’t perform that action at this time.
0 commit comments