Duckietown Shell is a pure Python, easily distributable (few dependencies) utility for Duckietown.
The idea is that most of the functionality is implemented as Docker containers, and dt-shell
provides a nice interface for that, so that user should not type a very long docker run
command line.
Note: Duckietown Shell required Python 3.6 or higher.
The duckietown shell has very minimal requirements. Please use the links provided and follow the instructions for your OS
Note: You need to add yourself to the docker
group:
$ sudo adduser `whoami` docker
Important: after you that, you must log out and in to have the group change take effect.
By default Docker uses the OS X keychain to store credentials but this is not good.
Edit ~/.docker/config.json
and remove all references to a "osxkeychain".
Then run docker login
again.
Then you should see an auth
entry of the type:
{
"auths": {
"https://index.docker.io/v1/": {
"auth": "mXXXXXXXXXXXXXXXXXXXXXXXXXX"
}
},
}
Note: This OS is officially supported
Install using pipx
Install pipx
:
$ sudo apt install -y pipx
Install the duckietown-shell
:
$ pipx install duckietown-shell
To upgrade to the latest version of duckietown-sheel
:
$ pipx upgrade duckietown-shell
Install pip3
$ sudo apt install -y python3-pip
Install the duckietown-shell
Python package:
$ pip3 install --no-cache-dir --user -U duckietown-shell
Typing
$ which dts
should output something like: /home/![user]/.local/bin/dts
If nothing is output you may need to add /home/![user]/.local/bin
to your shell path. You can do so by adding the line:
`export PATH=$PATH:/root/.local/bin`
into your ~/.bashrc
file (if you use bash, otherwise the corresponding shell initialization file).
The duckietown shell requires python 3.6 or higher, which is not standard on ubuntu16. A currently working workaround is to install homebrew, by following instructions here. Then, run :
$ brew install python3
$ python3.7 -m pip install --no-cache-dir --user -U duckietown-shell
Then, typing
$ which dts
should output : /home/linuxbrew/.linuxbrew/bin/dts
Install pipx
:
(see https://pipx.pypa.io/stable/installation/ for more details)
$ brew install pipx
$ pipx ensurepath
$ sudo pipx ensurepath --global # optional to allow pipx actions in global scope. See "Global installation" section below.
Install the duckietown-shell
:
$ pipx install duckietown-shell
To upgrade to the latest version of duckietown-sheel
:
$ pipx upgrade duckietown-shell
Install the duckietown-shell
:
Note: Never use sudo pip install
to install duckietown-shell
.
$ pip3 install --no-cache-dir --user -U duckietown-shell
Typing
$ which dts
should output the path to the dts
executable. This path can vary based on your python setup.
If it is not found you may need to add something to your shell path.
To install the shell, use:
$ pip3 install --no-cache-dir --user -U duckietown-shell
The shell itself does not require any other dependency beside standard cross-platform Python libraries.
Note: Never use sudo pip3 install
to install duckietown-shell
.
Assuming that Docker is already installed, place the following
in your ~/.bashrc
or other initialization file for a shell:
alias dts='docker run -it --rm -v /var/run/docker.sock:/var/run/docker.sock -w $PWD -v $PWD:$PWD -v ~/.dt-shell:/root/.dt-shell -v ~/.docker:/root/.docker duckietown/duckietown-shell:v3 dts'
Some functionality might not be available.
At this point, try to enter the Duckietown shell by typing the command
$ dts
If you get an error, delete the subfolder commands
in the folder ~/.dt-shell
~/.dt-shell$ rm -rf commands/
Then, try again
$ dts
You now have successfully installed the Duckietown Shell. If you know what you want to do with it go ahead. Below are some examples of things you can do with the Duckietown Shell
To compile one of the books (e.g. docs-duckumentation but there are many others):
$ git clone https://github.com/duckietown/docs-duckumentation.git
$ cd docs-duckumentation
$ git submodule init
$ git submodule update
$ dts docs build
There is an incremental build system. To clean and run from scratch:
$ dts docs clean
$ dts docs build
Run the command dts tok set
to set the Duckietown authentication token:
$ dts tok set
Instructions will guide you and you will be prompted for the token.
If you already know the token, then you can use:
$ dts tok set dt2-YOUR-TOKEN
To verify that a token is valid, you can use:
$ dts tok verify dt2-TOKEN-TO-VERIFY
This exits with 0 if the token is valid, and writes on standard output the following json:
{"uid": 3, "expiration": "2018-09-23"}
which means that the user is identified as uid 3 until the given expiration date.
This command will install DuckieOS on the SD-card:
$ dts init_sd_card
This command will start the ROS GUI container:
$ dts start_gui_tools <DUCKIEBOT_NAME_GOES_HERE>
This command will run the Duckiebot calibration procedure:
$ dts calibrate_duckiebot <DUCKIEBOT_NAME_GOES_HERE>
In some cases, you might want to uninstall the duckietown-shell
, or reset the configurations.
If you want to just uninstall the duckietown-shell python module, you could do:
$ python3 -m pip uninstall duckietown-shell
If you also want to reset the settings, e.g. your Duckietown token, docker logins, version of the shell, etc, you would
also want to remove the .duckietown/shell
folder in your home folder.
On Ubuntu/mac for example, this could be done with:
$ rm -rf ~/.duckietown/shell
Clone the Duckietown Shell repository
$ git clone [email protected]:duckietown/duckietown-shell.git
You can install Duckietown Shell from your local source
$ cd duckietown-shell
$ pipx install -e .
Note: using the -e
option would install dts
and link it directly to your source code. This means that any changes to the source code would reflect directly in the environment.
You can also use pip
to install
$ pip install -e .
To run the app in debug mode using Visual Studio Code, follow these steps:
- Open the Debug view by clicking on the Debug icon in the Activity Bar on the side of the window.
- Select the
dts
Launch configuration from the dropdown menu. - Click the green play button to start debugging.
- Enter the arguments that you want to pass to the
dts
command, for exampleprofile list
-- this is the same as executingdts profile list
.
This will launch the application in debug mode, allowing you to set breakpoints and step through the code.
Note: Duckietown Shell comes with a core set of commands used to manage the Duckietown Shell environment. All Duckietown specific commands come from the Duckietown Shell Commands repository - https://github.com/duckietown/duckietown-shell-commands
For Duckietown Shell Commands development, you need to tell dts
where to find the command set.
Use the env variable to work on your local copy of the commands:
export DTSHELL_COMMANDS=/path/to/my/duckietown-shell-commands
For additional information, see devel.
You can set the DTSHELL_COMMANDS
variable via the python.env
file located under .vscode
directory.
To simplify development, you can symlink the duckietown-shell-commands
directory/repository to be inside the duckietown-shell
project:
# assuming that the duckietown-shell-commands repository has been cloned
# at the same level as the duckietown-shell repo
cd ~/duckietown-shell
ln -s $(realpath ../duckietown-shell-commands) ./
Note: don't forget to set your DTSHELL_COMMANDS
environment variable by editing the python.env
file.
This allows you to easily add breakpoints in the duckietown-shell-commands
python files and run dts
in debug mode.