|
3 | 3 | Gradient CLI |
4 | 4 | ================= |
5 | 5 |
|
6 | | -Release 0.2.2 |
| 6 | +Release 0.2.3 |
7 | 7 |
|
8 | 8 | See [releasenotes.md](https://github.com/Paperspace/gradient-cli/blob/master/releasenotes.md) for details on the current release, as well as release history. |
9 | 9 |
|
@@ -78,7 +78,7 @@ You can run a Python script on a Paperspace server from the command line as foll |
78 | 78 |
|
79 | 79 | You can also provide additional jobs options on the command line: |
80 | 80 |
|
81 | | - gradient run myscript.py --name my_new_job --project myproject --machineType P5000 \ |
| 81 | + gradient run myscript.py --name my_new_job --projectId myproject --machineType P5000 \ |
82 | 82 | --container paperspace/tensorflow-python` |
83 | 83 |
|
84 | 84 | Note: this functionality is deprecated and will not be available in future releases |
@@ -114,11 +114,11 @@ Basic Run Scenarios |
114 | 114 |
|
115 | 115 | 4. Run an executable or shell command remotely using the `--command` option: |
116 | 116 |
|
117 | | - `gradient run --command "<executable or shell command>"` |
| 117 | + `gradient run <path_to_script.py> --command "<executable or shell command>"` |
118 | 118 |
|
119 | 119 | Example: |
120 | 120 |
|
121 | | - `gradient run --command "ls -al"` |
| 121 | + `gradient run <path_to_script.py> --command "ls -al"` |
122 | 122 |
|
123 | 123 | Run Options |
124 | 124 | =========== |
@@ -150,7 +150,7 @@ The `--ignoreFiles "<file-or-dir>,..."` option can be used specify a simple comm |
150 | 150 |
|
151 | 151 | The following files and directories are ignored by default: `.git`, `.gitignore`, `__pycache__`. |
152 | 152 |
|
153 | | -Other `jobs create` options can be specified, such as `--machineType <machine-type>`, `--container <container-image-reference>`, and `--project <project-name>`. |
| 153 | +Other `jobs create` options can be specified, such as `--machineType <machine-type>`, `--container <container-image-reference>`, and `--projectId <project-name>`. |
154 | 154 |
|
155 | 155 | See the Paperspae API [jobs create](https://paperspace.github.io/paperspace-node/jobs.html#.create) documentation for a complete description of these options. |
156 | 156 |
|
|
0 commit comments