You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+31-2Lines changed: 31 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ Here are quick start instructions for Windows, Mac and Linux users using the aut
58
58
59
59
#### 1. Download and unpack the source code
60
60
61
-
Download the PhotoMap source code as a .zip file from the latest stable Releases page. For development versions, use the "Download ZIP" link in the green "Code" button near the top of the GitHub PhotoMap home page.
61
+
Download the PhotoMap source code as a .zip file from the latest stable [Releases page](https://github.com/lstein/PhotoMapAI/releases). For development versions, use the "Download ZIP" link in the green "Code" button near the top of the GitHub PhotoMap home page.
62
62
63
63
Choose a convenient location in your home folder and unzip the file to create a new folder named `PhotoMap`.
64
64
@@ -80,7 +80,7 @@ Double-click `start_photomap.bat` to launch the server. You should see a few sta
80
80
81
81
#### 1. Download and unpack the source code
82
82
83
-
Download the PhotoMap source code as a .zip file from the latest stable Releases page. For development versions, use the "Download ZIP" link in the green "Code" button near the top of the GitHub PhotoMap home page.
83
+
Download the PhotoMap source code as a .zip file from the latest stable [Releases page](https://github.com/lstein/PhotoMapAI/releases). For development versions, use the "Download ZIP" link in the green "Code" button near the top of the GitHub PhotoMap home page.
84
84
85
85
Choose a convenient location in your home directory and unzip the file to create a new folder named `PhotoMap`.
86
86
@@ -95,6 +95,35 @@ Double click `start_photomap` to launch the server. You will see a few startup m
95
95
#### 4. **Open your browser:**
96
96
Navigate to `http://localhost:8050` and follow the prompts to create and populate your first album.
97
97
98
+
99
+
### Manual Install
100
+
101
+
Follow these instructions if you are comfortable with installing Python packages on the command line.
102
+
103
+
#### Mac/Linux
104
+
105
+
Make sure that your version of Python is between 3.10 and 3.12. Not all required libraries are available in 3.13.
106
+
107
+
python3 -m venv ~/photomap --prompt photomap
108
+
source ~/photomap/bin/activate
109
+
python3 -m pip install --upgrade pip
110
+
pip install photomapai
111
+
start_photomap
112
+
113
+
Then open your web browser and point it to [http://127.0.0.1:8050](http://128.0.0.1:8050). Follow the prompts to create your first album.
114
+
115
+
#### Windows
116
+
117
+
Make sure that your version of Python is between 3.10 and 3.12. Not all required libraries are available in 3.13. Also make sure that Python is on your PATH.
0 commit comments