Islam Elsayed

Results 15 comments of Islam Elsayed

Hi, I tested out the dockerfile, gave me an error. Fixed by adding the line below ``` ENV LD_LIBRARY_PATH=/usr/local/cuda-12.3/compat:$LD_LIBRARY_PATH ``` Error: `/app/nitro/build/nitro: error while loading shared libraries: libcuda.so.1: cannot open...

Interested in this too.

This is standard SQL in most dialects. Consider referencing by number ```sql SELECT PULocationID, DOLocationID, window_start AS day, pu_zones.Zone as PULocationName, do_zones.Zone as DOLocationName, AVG(fare_amount) as avg_amount INTO avg_fares FROM...

Happened to me after trying to upgrade a cluster. Had to helm uninstall and re-install and then it worked fine.

adding this line somewhere in the code also can fix it ``` if sys.platform == 'win32': asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy()) ```