Skip to content

Commit cfa9d05

Browse files
committed
fix(docs): update README links to reflect new repository username
1 parent 8022c12 commit cfa9d05

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ pip install drone-pathgen==0.1.0
3434

3535
This option lets you install pre-compiled wheels directly from GitHub without needing PyPI:
3636

37-
1. **Go to the [Releases page](https://github.com/yourusername/drone-pathgen/releases)**
37+
1. **Go to the [Releases page](https://github.com/u-k-g/drone-pathgen/releases)**
3838
2. **Download the appropriate wheel** for your Python version and operating system
3939
3. **Install the downloaded wheel**:
4040

@@ -47,16 +47,16 @@ pip install drone_pathgen-0.1.0-cp312-cp312-macosx_10_9_x86_64.whl
4747

4848
```bash
4949
# install latest release directly (replace with actual repo URL)
50-
pip install https://github.com/yourusername/drone-pathgen/releases/latest/download/drone_pathgen-0.1.0-cp312-cp312-macosx_10_9_x86_64.whl
50+
pip install https://github.com/u-k-g/drone-pathgen/releases/latest/download/drone_pathgen-0.1.0-cp312-cp312-macosx_10_9_x86_64.whl
5151

5252
# or use our automated installer script (recommended):
53-
curl -O https://raw.githubusercontent.com/yourusername/drone-pathgen/main/scripts/install_from_github.py
53+
curl -O https://raw.githubusercontent.com/u-k-g/drone-pathgen/main/scripts/install_from_github.py
5454
python install_from_github.py
5555

5656
# or run directly without downloading:
5757
python -c "
5858
import urllib.request
59-
urllib.request.urlretrieve('https://raw.githubusercontent.com/yourusername/drone-pathgen/main/scripts/install_from_github.py', 'install.py')
59+
urllib.request.urlretrieve('https://raw.githubusercontent.com/u-k-g/drone-pathgen/main/scripts/install_from_github.py', 'install.py')
6060
exec(open('install.py').read())
6161
"
6262
```
@@ -81,13 +81,13 @@ Examples:
8181

8282
```bash
8383
# install latest development version
84-
pip install git+https://github.com/yourusername/drone-pathgen.git
84+
pip install git+https://github.com/u-k-g/drone-pathgen.git
8585

8686
# install specific version/tag
87-
pip install git+https://github.com/yourusername/drone-pathgen.git@v0.1.0
87+
pip install git+https://github.com/u-k-g/drone-pathgen.git@v0.1.0
8888

8989
# or clone and install locally
90-
git clone https://github.com/yourusername/drone-pathgen.git
90+
git clone https://github.com/u-k-g/drone-pathgen.git
9191
cd drone-pathgen
9292
pip install .
9393
```
@@ -109,7 +109,7 @@ sudo apt-get install libeigen3-dev libboost-all-dev libompl-dev cmake build-esse
109109
**Automated Installation:**
110110
```bash
111111
# clone the repo and run the automated installer
112-
git clone https://github.com/yourusername/drone-pathgen.git
112+
git clone https://github.com/u-k-g/drone-pathgen.git
113113
cd drone-pathgen
114114
./scripts/install.sh
115115
```
@@ -253,7 +253,7 @@ If you want to modify the C++ code or contribute to the project:
253253

254254
```bash
255255
# clone and setup development environment
256-
git clone https://github.com/yourusername/drone-pathgen.git
256+
git clone https://github.com/u-k-g/drone-pathgen.git
257257
cd drone-pathgen
258258

259259
# install in development mode

0 commit comments

Comments
 (0)