Upcoming updates / Tutorials #123
-
Dear All, Wanted to ask if there is a tutorial/support to run AquaCrop-OS.py in a local machine ?
As I have basic knowledge of programming I am stuck at this point on utilising AquaCrop-OS for my research. Florent |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Running AquaCrop-OS on a local machine can indeed present a few hurdles, particularly with dependencies like Numba and issues arising from attempting to compile AOT (Ahead-Of-Time) functions without the appropriate compiler tools. Here's a step-by-step guide to potentially resolve your issues, based on the error messages you've encountered:
General Steps to Run AquaCrop-OS Locally:
Cheers |
Beta Was this translation helpful? Give feedback.
-
Thanks for that really detailed and useful answer @Paloschi. Just to add that we are going to look into implementing an alternative to numba AOT over the coming months, but in the meantime the temporary fix if none of the above work for you is to run in development environment which turns off the compilation. It will be slower but will usually eliminate issues that are traced back to the numba compilation, which we will look into a more complete solution to as its clearly becoming a more common problem |
Beta Was this translation helpful? Give feedback.
Running AquaCrop-OS on a local machine can indeed present a few hurdles, particularly with dependencies like Numba and issues arising from attempting to compile AOT (Ahead-Of-Time) functions without the appropriate compiler tools. Here's a step-by-step guide to potentially resolve your issues, based on the error messages you've encountered:
Numba Pending Deprecation Warning
The warning about the deprecation of the numba.pycc module in Numba version 0.57.0 suggests that your code or one of your dependencies is using a feature that will soon be removed. While this is a warning and not an error, it's a good idea to check if there's an updated version of AquaCrop-OS or any related dependenc…