kitti2bag
kitti2bag copied to clipboard
how to run kitti2bag in Windows?
This seems can only run in linux. But how to run it in windows?
Did you find anything on this?
@tanay-o @littlefish111 I think there are two possible ways to run kitti2bag in Windows:
-
Run it in Docker: Windows 10 and 11 can both install the latest Docker Desktop which works on top of WSL2 (I have successfully installed and run Docker Desktop on Windows 10 Home). Make sure you enable and update WSL2 before install Docker Desktop (see Docker Desktop WSL 2 backend and Download the Linux kernel update package for more details). To get a quick start with
kitti2bag, I have pushed Docker images that you can run out of the box. Go and take a look at magic4wei/kitti on Docker Hub. -
Run it in a Python virtual environment (e.g. via Anaconda): I tested this on Ubuntu but it should works on Windows as well. See #62 for Python dependency installation. BTW, some packages like
tf2-pyandroslz4needs to be built from wheels, which needs additional packages to be available. On Ubuntu, I install them by runningapt-get install gcc g++ libboost-all-dev liblz4-dev. If you can find a way to install them properly on Windows, then I think everything should work well as it does on Ubuntu. I will test this on Windows 10 in the future and update my post here.