Django项目部署到服务器
远程连接使用Xshell作为远程连接的工具。使用方法很简单: 将主机IP、端口号(22)以及用户身份认证(用户名:root,密码:XXXXXX)填好即可连接 连接成功后,就能在 XShell 窗口中看到阿里云的欢迎字样了: 1234567Welcome to Ubuntu 22.04.4 LTS (GNU/Linux 5.15.0-113-generic x86_64) * Documentation: https://help.ubuntu.com * Management: https://landscape.canonical.com * Support: https://ubuntu.com/proWelcome to Alibaba Cloud Elastic Compute Service ! 项目部署克隆项目并搭建环境先更新Ubuntu系统上的软件包 12sudo apt updatesudo apt upgrade 接着安装Python及相关工具 1apt install python3 python3-pip...