its sofware for autonomouse car
-
fork the repo
-
make your branch which must be named (your name)_(the function your solving)
-
make sure your in your branch
-
Build the image (recreates the same environment) docker build -t rust-python .
-
Run the container with the repo mounted Windows PowerShell docker run --rm -p 8080:80 -p 8081:81 -p 8082:82 -p 8083:83 -p 8084:84 -it -v "${PWD}:/work" -w /work rust-python bash
macOS/Linux docker run --rm -p 8080:80 -p 8081:81 -p 8082:82 -p 8083:83 -p 8084:84 -it -v "$(pwd):/work" -w /work rust-python bash
-
run python com_window_code/main.py
-
Verify tools inside the container
which python python --version pip --version cargo --version
Please open a Pull Request for all changes.
for ml devs once ur done with development make sure u run pip freeze and copy tht output to requirments.txt
steps to contribute
- push to your branch and open a pull request
- this request will be reviewed and approved for merging