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: docs/1. App/1- Installation.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -91,4 +91,5 @@ npm run server
91
91
## Troubleshooting
92
92
- If the path in `package.json` is not properly populated, a `Failed to upload file` error will appear. Make sure the path points to an existing and accessible directory. This error will also be seen if the Flask Server fails to start.
93
93
- To ensure that the app is properly running in Docker, after the command `npm start gemini`, ensure that the terminal is NOT cleared (meaning you should be able to scroll up and see previous commands). If the terminal is cleared (you are unable to scroll up to view previous commands), the app is not running in Docker properly. Restart Docker and try again.
94
-
- Certain errors during orthophoto generation can be solved by manual deletion of the `~/GEMINI-App-Data/temp` directory. If generation is repeatedly failing, delete `temp` before the next attempt.
94
+
- Certain errors during orthophoto generation can be solved by manual deletion of the `~/GEMINI-App-Data/temp` directory. If generation is repeatedly failing, delete `temp` before the next attempt.
95
+
- If you encounter an error during installation of `farm-ng-core` such as `error: variable length arrays in C++ are a Clang extension [-Werror,-Wvla-cxx-extension]`, it means the compiler is treating warnings as errors due to the `-Werror` flag. To resolve this, open the `setup.py` file inside the `farm-ng-core` directory and remove the `"-Werror"` entry from the `extra_compile_args` list. This will allow the build to proceed even when compiler warnings are present. (Common for MacOS users)
0 commit comments