Skip to content

Commit f8a1d09

Browse files
authored
Revise installation steps in README.md
Updated installation instructions to include manual steps for cloning dependencies.
1 parent 14b5fc2 commit f8a1d09

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,16 @@ This breaks chronological sorting and makes it difficult to find your actual rec
2626
Fix your folders in 3 simple steps:
2727

2828
```bash
29-
# 1. Install
30-
pip install folder-datetime-fix
29+
# 1. Install (for now the process is manual since the packages aren't on PyPI yet and dazzle-tree-lib is a dependency)
30+
git clone https://github.com/djdarcy/dazzle-tree-lib.git
31+
cd dazzle-tree-lib
32+
pip install -e .
33+
34+
cd ..
35+
git clone https://github.com/djdarcy/folder-datetime-fix.git
36+
cd folder-datetime-fix
37+
pip install -r requirements.txt
38+
pip install -e .
3139

3240
# 2. Preview changes (always do this first!)
3341
cd \your\project\folder
@@ -41,7 +49,7 @@ That's it! Your folders now show their real modification dates.
4149

4250
## Installation
4351

44-
### From PyPI (Recommended)
52+
### From PyPI (Recommended when available)
4553

4654
```bash
4755
pip install folder-datetime-fix

0 commit comments

Comments
 (0)