简体   繁体   中英

Jupyter Notebook: Execution on Remote Server: are Files Written to Remote Server?

I want to execute a Jupyter Notebook on a remote server.

If I use this:

with open('somefile.txt', 'a') as the_file:
the_file.write('Hello\n')

Is the file saved on the local or the remote file system?

Yes, the file will be saved into the remote file system. You can make use of applications like Filezilla if you are using Linux OS or you can use Winscp for windows to retrieve the files.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM