申请InternStudio开发机:
这里进去报名参加实战营即可获取 书生大模型实战营
InternStudio平台 创建开发机
SSH连接开发机:
SSH免密码登录
- 本地创建SSH密钥
ssh-keygen -t rsa
- 打开以下文件获取公钥
~/.ssh/id_rsa.pub
-
去InternStudio添加公钥
-
远程连接
InternStudio上获取SSH连接命令
本地连接
VScode连接开发机:
-
安装插件
-
使用Remote - SSH连接开发机
-
添加远程连接SSH命令,使用第一节copy的SSH命令
-
添加好后点击右下角连接
-
打开开发机root文件夹
-
添加端口映射,使用“Ctrl+Shift+~”快捷键唤醒终端,在终端的右侧可以找到端口选项
Hello Word:
- 安装gradio
pip install gradio==4.29.0
- 在root文件夹中创建hello_world.py
import socket
import re
import gradio as gr
# 获取主机名
def get_hostname():
hostname = socket.gethostname()
match = re.search(r'-(\d+)$', hostname)
name = match.group(1)
return name
# 创建 Gradio 界面
with gr.Blocks(gr.themes.Soft()) as demo:
html_code = f"""
<p align="center">
<a href="https://intern-ai.org.cn/home">
<img src="https://intern-ai.org.cn/assets/headerLogo-4ea34f23.svg" alt="Logo" width="20%" style="border-radius: 5px;">
</a>
</p>
<h1 style="text-align: center;">☁️ Welcome {get_hostname()} user, welcome to the ShuSheng LLM Practical Camp Course!</h1>
<h2 style="text-align: center;">😀 Let’s go on a journey through ShuSheng Island together.</h2>
<p align="center">
<a href="https://github.com/InternLM/Tutorial/blob/camp3">
<img src="https://oss.lingkongstudy.com.cn/blog/202406301604074.jpg" alt="Logo" width="20%" style="border-radius: 5px;">
</a>
</p>
"""
gr.Markdown(html_code)
demo.launch()
- 运行
python hello_world.py
- 本地打开网址(需要映射端口7860)
http://127.0.0.1:7860/