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
Update:
As the default passed UID and GID are empty based on the original Makefile, the user inside the docker container is root. With this setting, e.g., the ray-tracing tutorial works.
By setting it to "shell id -u" etc. the correct UID and GID are passed on, but the scripts do not work anymore.
E.g., Sionna_Ray_Tracing_Introduction.ipynb:
The kernel dies, as Matplotlib creates an error on the first executed python script lines: "Matplotlib created a temporary cache directory ... because the default path (/.config/matplotlib) is not a writeable directory.
Hi everybody,
in the Makefile you have a docker run command as follows:
For me, the option
-u $(id -u):$(id -g)
does not work, as the returned IDs are empty.Changing it to
-u $(shell id -u):$(shell id -g)
solves it.Cheers,
Emanuel
The text was updated successfully, but these errors were encountered: