简体   繁体   English

Jupyter Notebook:在远程服务器上执行:文件是否写入到远程服务器?

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

I want to execute a Jupyter Notebook on a remote server. 我想在远程服务器上执行Jupyter Notebook。

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. 如果您使用的是Linux OS,则可以使用Filezilla之类的应用程序,也可以使用Windows的Winscp来检索文件。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 将 Jupyter 笔记本连接到远程服务器 - Connecting Jupyter notebook to Remote server 通过远程 AWS 服务器上的 jupyter notebook 访问本地文件 - Accessing local files via jupyter notebook on remote AWS server VSCode 远程 Jupyter Notebook - 在 Jupyter Notebook 远程服务器上的特定文件夹中打开现有笔记本 - VSCode remote Jupyter Notebook - Open an existing notebook in a specific folder on Jupyter Notebook remote server 如何在远程Jupyter Notebook执行中使用OpenCV? - How to use opencv in a remote jupyter notebook execution? 如何在 AWS-Ubuntu 上连接 Jupyter Notebook 远程服务器 - How to connect Jupyter Notebook Remote Server on AWS- Ubuntu 在远程服务器上运行时为 jupyter notebook 指定主机名 - Specify hostname to jupyter notebook when running on remote server 如何连接到远程Jupyter服务器 - How to connect to remote Jupyter server 我如何在远程 Jupyter 服务器上查看我的文件? (VS代码) - How can i see my files on remote Jupyter server? (Vscode) 如何通过 ssh 访问远程服务器上运行的 Jupyter notebook 中本地机器的输入设备? - How to access input device of local machine in Jupyter notebook running on remote server through ssh? Jupyter Notebook 需要 javascript。 使用 Putty 从远程服务器机器访问。 - Jupyter Notebook requires javascript. Accesing from remote server machine using Putty.
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM