- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The DevCloud hosts two editors directly through SSH; nano and vim. You can try them out by entering their names on the commandline once you have established an SSH connection.
The DevCloud does provide some alternative options. If you look here:
https://devcloud.intel.com/oneapi/documentation/connect-with-vscode/
you can find instructions to get your machine's VSCode working in conjunction with the DevCloud.
Alternatively, you can use any editor on your local environment if you are willing to add 1 extra-step to your development cycle: copy your source file to your Intel DevCloud home directory after editing with the 'scp' command.
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
It is also possible to use a Jupyter notebook interface to edit your source files, summon any Python routines for graphing or visualizing your program's outputs, as well as interacting with the command line.
- Open the first terminal session
- Run ssh devcloud
- Setup a password for your Jupyter session with: jupyter notebook password
- Then start a Jupyter session without the browser : jupyter notebook --no-browser --port=<PORT>. (In my case <PORT> was 8889)
Watch for any error messages that your selected port was unavailable.
- Open the second terminal session to create a tunnel to the same login node on Devcloud.
- Run ssh -L 8080:localhost:<PORT> devcloud
- Open a browser on your own PC, and go to the following address : http://localhost:8080/. All the files on the login node should be visible here.
- Now we can start a Jupyter notebook and interact with DevCloud exclusively through the browser.

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page