Spencer Hallyburton
Spencer Hallyburton
I had to use encoding='latin1' in order to get this to work, for anyone else out there.
The thread referenced above solved this for me. https://github.com/mkdocstrings/mkdocstrings/issues/311#issuecomment-1104466238 tldr; adding options for `mkdocstrings` to add additional paths ``` plugins: - mkdocstrings: handlers: python: paths: [src1, src2] ```
``` FROM pytorch/pytorch:1.8.0-cuda11.1-cudnn8-devel RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections # To fix GPG key error when running apt-get update RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/3bf863cc.pub && \ apt-key adv...
We've incorporated these updates in our fork: https://github.com/avstack-lab/carla/tree/build_0.9.13_py310_ubuntu22 See how we're using this with other python 3.10 libraries here: https://github.com/avstack-lab/carla-sandbox
@kopytjuk, you hit the nail right on the head. I do deal with "real time" applications, but the majority of my use cases are in offline development and prototyping where...