| --- |
| title: vessl run |
| version: EN |
| --- |
| |
| ### Overview |
|
|
| `vessl run` is a simple command for running an experiment in the cluster. You can simple add `vessl run` in front of your command. |
|
|
| This will inquiry information to run on the cluster and create an experiment with |
|
|
| * Upload current directory to `/root/local` |
| * Run command in `/root/local` |
|
|
| Once the command completes, you will be given a link to the experiment **** and logs from experiments.  |
|
|
| At this stage, you can exit the command with Ctrl+C; This will not terminate the running experiment. To terminate the experiment, click the experiment link and select terminate on the page. |
|
|
| This command is equivalent to |
|
|
| ``` |
| vessl experiment create |
| --command ${command} |
| --upload-local-git-diff false |
| --working-dir /root/local |
| --upload-local-file .:/root/local |
| |
| vessl experiment logs ${experiment-number} |
| ``` |
|
|
|   |
|
|