Skip to content

Commit 3de8f20

Browse files
committed
Improved instructions for mac installations
1 parent ea246e8 commit 3de8f20

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

notebooks/full_extraction/README.md

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ python3 -m venv rtk # Creates a virtual environment called "rtk"
99
source rtk/bin/activate # Enters the virtual environment
1010
pip install -r requirements.txt # Installs the required packages
1111
```
12-
3. Install RTKLIB (https://github.com/tomojitakasu/RTKLIB)
12+
3. Install RTKLIB (see below)
1313
- MacOS users will have to modify some Makefiles and build from source
1414
- Linux users will have to build from source
1515
- Windows users can install a prebuilt version (google RTKLIB)
@@ -34,7 +34,9 @@ pip install -r requirements.txt # Installs the required packages
3434
## Known issues
3535
- API for map of buggy course is broken so displaying shows on a white background
3636

37-
## Windows Users
37+
## Special Installation Steps
38+
39+
### Windows Users
3840
1. Download latest version from RTKLIB (https://rtklib.com)
3941
2. Extract the Zip File to somewhere on your hard drive, and copy file path (Either Ctrl + Shift + C, or double click and select "Copy as Path")
4042
3. Open Settings and Search for "Edit Environment Variables for Your Account" ![image](https://github.com/user-attachments/assets/4c383597-7cd0-479c-8b86-4668df919594)
@@ -44,8 +46,16 @@ pip install -r requirements.txt # Installs the required packages
4446

4547

4648
### (MacOS users) Installing from source
47-
1. Edit the below files as per the diff
48-
2. Run `make && make install` from `(RTKLIB)/app/consapp`
49+
1. Download this version of RTKLIB (https://github.com/rtklibexplorer/RTKLIB)
50+
2. Edit the below files as per the diff. Basically you want to remove the -lrt flag from the makefiles in the app directory so that everything compiles.
51+
3. Run the following sequence of commands:
52+
```shell
53+
mkdir build
54+
cd build/
55+
cmake ..
56+
make
57+
make install
58+
```
4959

5060
```diff
5161
diff --git a/app/consapp/convbin/gcc/makefile b/app/consapp/convbin/gcc/makefile

0 commit comments

Comments
 (0)