要在远程服务器上使用 Jupyter 运行代码,并使用一个已配置好的 Conda 环境,你需要按照以下几个步骤操作:
登录远程服务器
使用 SSH 登录远程服务器:
ssh your_username@remote_server_address
激活 Conda 环境
在服务器上,激活你已配置好的 Conda 环境:
conda activate your_environment_name
安装 Jupyter 内核
确保在你的 Conda 环境中安装了 Jupyter,并为该环境创建了一个 Jupyter 内核。如果还没有安装,你可以使用以下命令:
conda install -n your_environment_name jupyter
conda install -n your_environment_name ipykernel
python -m ipykernel install --user --name your_environment_name --display-name "Your Environment Name"
这将会安装 Jupyter 和 IPython 内核,并且为你的 Conda 环境添加一个 Jupyter 内核。–display-name 是你在 Jupyter 中见到的环境名称。