AI + Java 全栈开发环境搭建笔记
[!info] 环境说明本机系统:Windows 10 专业版 2019子系统:WSL2 (Ubuntu 26.04.1 LTS)日期:2026-09-01 一、系统更新与基础工具安装命令12sudo apt update && sudo apt upgrade -ysudo apt install -y git curl wget vim build-essential software-properties-common 安装结果 组件 版本 Git 2.53.0 curl 8.18.0 build-essential 系统自带最新版 二、Python 环境管理器 (Conda) 安装命令1234567891011# 下载 Miniconda 安装脚本wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh# 静默安装到 $HOME/miniconda 目录bash miniconda.sh -b -p $...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick StartCreate a new post1$ hexo new "My New Post" More info: Writing Run server1$ hexo server More info: Server Generate static files1$ hexo generate More info: Generating Deploy to remote sites1$ hexo deploy More info: Deployment