wayveai/mile

How to install or use 0.9.11 client?

Closed this issue · 1 comments

In my ubuntu 20.04 os system, to make PythonAPI command, there are issuses:
Setup.sh: llvm-8.0 already installed. Setup.sh: boost-1.72.0-c8 already installed. Setup.sh: rpclib-v2.2.1_c3-c8 already installed. Setup.sh: gtest-1.8.1-c8 already installed. Setup.sh: recast-cdce4e-c8 already installed. Setup.sh: Libpng already installed. Setup.sh: Xerces-c already installed. fatal: not a git repository (or any of the parent directories): .git make: *** [Util/BuildTools/Linux.mk:137: setup] Error 128

There is no easy_install pacakge manager tools in ubuntu 20.04, so unable to install *.egg file, there is a method to install:
`cd ~/carla/PythonAPI/carla/dist/
unzip carla-0.9.10-py3.6-linux-x86_64.egg -d carla-0.9.10-py3.6-linux-x86_64
cd carla-0.9.10-py3.6-linux-x86_64

To create setup.py
from distutils.core import setup
setup(name='carla',
version='0.9.10',
py_modules=['carla'],
)

from distutils.core import setup
setup(name='carla',
version='0.9.10',
py_modules=['carla'],
)
`