<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>工具分类 &#8211; 轩然阁科技</title>
	<atom:link href="https://xrange.haoyong8.top/category/tool/feed/" rel="self" type="application/rss+xml" />
	<link>https://xrange.haoyong8.top</link>
	<description>轩然阁科技 &#124; 专注软路由、NAS与仿真技术分享</description>
	<lastBuildDate>Fri, 08 May 2026 12:20:57 +0000</lastBuildDate>
	<language>zh-Hans</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://xrange.haoyong8.top/wp-content/uploads/2026/03/cropped-cropped-logo_only_red-32x32.png</url>
	<title>工具分类 &#8211; 轩然阁科技</title>
	<link>https://xrange.haoyong8.top</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>剪映字幕识别限免不够用？OpenAI Whisper 本地免费提取字幕</title>
		<link>https://xrange.haoyong8.top/openai-whisper-video/</link>
					<comments>https://xrange.haoyong8.top/openai-whisper-video/#respond</comments>
		
		<dc:creator><![CDATA[轩然 拙见]]></dc:creator>
		<pubDate>Tue, 05 May 2026 02:01:00 +0000</pubDate>
				<category><![CDATA[工具分类]]></category>
		<guid isPermaLink="false">https://xrange.haoyong8.top/?p=1838</guid>

					<description><![CDATA[日常剪辑视频时，很多人会用剪映的自动识别字幕功能，但近期剪映PC版更新后，已经需要开通VIP才能使用。对于需要频繁提取字幕的小伙伴来说，这无疑增加了不便。今天给大家分享一套「完全免费、无次数限制、本地运行」的字幕提取方案，核心用到 OpenAI Whisper（语音转文字神器），搭配 Python 环境和必要工具，不管是视频语音转字幕、硬字幕识别，都能轻松搞定。]]></description>
										<content:encoded><![CDATA[
<p>摘要：日常剪辑视频时，很多人会用剪映的自动识别字幕功能，但近期剪映PC版更新后，已经需要开通VIP才能使用。对于需要频繁提取字幕的小伙伴来说，这无疑增加了不便。今天给大家分享一套「完全免费、无次数限制、本地运行」的字幕提取方案，核心用到 OpenAI Whisper（语音转文字神器），搭配 Python 环境和必要工具，不管是视频语音转字幕、硬字幕识别，都能轻松搞定。</p>



<h3 class="wp-block-heading"><strong>一、前期准备：明确需求与工具清单</strong></h3>



<h4 class="wp-block-heading">1. 适用场景</h4>



<ul class="wp-block-list">
<li>剪映字幕识别次数用完，需要免费替代工具；</li>



<li>视频只有语音，需生成带时间轴的字幕（SRT格式，可直接导入剪映）；</li>



<li>视频内有硬字幕（烧录在画面里，无法关闭），需提取为文本字幕；</li>



<li>批量处理视频字幕，追求高识别率、无网络依赖。</li>
</ul>



<h4 class="wp-block-heading">2. 核心工具清单（全部免费，附官方/镜像下载链接）</h4>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th class="has-text-align-left" data-align="left">工具名称</th><th class="has-text-align-left" data-align="left">用途</th><th class="has-text-align-left" data-align="left">下载链接</th><th class="has-text-align-left" data-align="left">备注</th></tr></thead><tbody><tr><td class="has-text-align-left" data-align="left">Python 3.10.x</td><td class="has-text-align-left" data-align="left">运行 Whisper 的基础环境</td><td class="has-text-align-left" data-align="left">官方地址：<a href="https://www.python.org/downloads/release/python-31011/">Python 3.10.11 官方下载页</a>国内镜像：<a href="https://mirrors.huaweicloud.com/python/3.10.10/python-3.10.10-amd64.exe">Python 3.10.10 华为镜像</a></td><td class="has-text-align-left" data-align="left">优先选 3.10 版本，兼容 Whisper 最佳，避免 3.12+ 高版本（依赖适配不足）</td></tr><tr><td class="has-text-align-left" data-align="left">OpenAI Whisper</td><td class="has-text-align-left" data-align="left">核心字幕提取工具（语音转文字/硬字幕识别）</td><td class="has-text-align-left" data-align="left">通过 Python 命令安装（下文附详细指令）</td><td class="has-text-align-left" data-align="left">开源免费，支持多语言，识别率优于多数免费工具</td></tr><tr><td class="has-text-align-left" data-align="left">FFmpeg</td><td class="has-text-align-left" data-align="left">辅助 Whisper 读取视频/音频文件</td><td class="has-text-align-left" data-align="left">官方地址：<a href="https://ffmpeg.org/download.html">FFmpeg 官方下载页</a>备用：通过 Python 命令安装</td><td class="has-text-align-left" data-align="left">Whisper 必须依赖此工具，否则无法读取视频</td></tr><tr><td class="has-text-align-left" data-align="left">Video-Subtitle-Extractor（VSE）</td><td class="has-text-align-left" data-align="left">专门提取硬字幕（烧录在画面里的字幕）</td><td class="has-text-align-left" data-align="left">GitHub 地址：<a href="https://github.com/XingangPan/video-subtitle-extractor">Video-Subtitle-Extractor</a>国内镜像：<a href="https://gitee.com/qq2276632042/video-subtitle-extractor">VSE 码云地址</a></td><td class="has-text-align-left" data-align="left">有 Windows 免安装版，无需复杂配置，专门适配硬字幕识别</td></tr><tr><td class="has-text-align-left" data-align="left">提词匠小程序</td><td class="has-text-align-left" data-align="left">在线免费提取字幕（无需装软件）</td><td class="has-text-align-left" data-align="left">微信搜索「提词匠」即可打开</td><td class="has-text-align-left" data-align="left">无需安装，支持视频/音频转文字，可导出 SRT 文件</td></tr></tbody></table></figure>



<h3 class="wp-block-heading"><strong>二、详细安装步骤（Windows 系统，全程实操无坑）</strong></h3>



<p>重点讲解「Python + Whisper + FFmpeg」的安装，这是本地免费提取字幕的核心组合，适用于大多数场景（语音转字幕、硬字幕识别）。</p>



<h4 class="wp-block-heading">第一步：安装 Python 3.10.x（关键步骤，别踩坑！）</h4>



<p>Python 是运行 Whisper 的基础，必须安装正确版本，且配置好环境变量，否则后续命令无法执行。</p>



<ol class="wp-block-list">
<li>下载安装包： 优先从官方下载 Python 3.10.11（稳定版），打开链接 <a href="https://www.python.org/downloads/release/python-31011/">Python 3.10.11 官方下载页</a>，拉到页面底部「Files」区域，点击「Windows x86-64 executable installer」（64位系统，目前绝大多数电脑都是64位）； 如果官网下载速度慢，直接用国内镜像：<a href="https://mirrors.huaweicloud.com/python/3.10.10/python-3.10.10-amd64.exe">Python 3.10.10 华为镜像</a>，下载后得到「python-3.10.10-amd64.exe」文件（存到桌面，方便后续查找）。</li>



<li>开始安装： 双击打开下载好的 .exe 安装文件，弹出安装窗口，<strong>第一步必须勾选左下角的「Add Python 3.10 to PATH」</strong>（这一步是让系统识别 Python 和 pip 命令，不勾选会导致后续报错）； 勾选完成后，点击窗口中间的「Customize installation」（自定义安装），避免默认路径的权限问题； 下一个页面，所有选项保持默认（全部勾选），点击「Next」； 再下一个页面，点击「Browse」，将安装路径改为「D:\Python310」（放在 D 盘根目录，后续找文件更方便，也能避免 C 盘权限问题），点击「Install」； 等待进度条走完，出现「Setup was successful」，说明安装成功，点击「Close」关闭窗口。</li>



<li>验证安装是否成功： 按下键盘「Win + R」，输入「cmd」，回车打开「命令提示符」（黑窗口）； 在窗口中输入以下命令，按回车： <code>python --version</code> 如果显示「Python 3.10.10」或「Python 3.10.11」，说明 Python 安装成功； 再输入以下命令，按回车： <code>pip --version</code> 如果显示「pip 2x.x.x from &#8230;」（版本号不固定），说明 pip 包管理器也正常工作。</li>
</ol>



<h4 class="wp-block-heading">第二步：安装 OpenAI Whisper（核心字幕提取工具）</h4>



<p>Whisper 是 OpenAI 开源的语音转文字工具，支持多语言，识别率高，完全免费，无次数限制，安装后通过命令行即可使用。</p>



<ol class="wp-block-list">
<li>打开之前的「命令提示符」窗口（无需重新打开，继续使用即可）；</li>



<li>输入以下命令，按回车（用国内清华源，下载速度更快，避免超时失败）： pip install openai-whisper -i https://pypi.tuna.tsinghua.edu.cn/simple</li>



<li>等待安装完成： 安装过程中会自动下载 Whisper 所需的依赖包（如 numpy、torch 等），可能需要3-5分钟（取决于网络速度），耐心等待即可； 如果出现「Successfully installed openai-whisper-xxxx」，说明 Whisper 安装成功（参考下图安装成功示例）。</li>
</ol>



<p>安装成功示例（截取实操过程中的成功日志）：</p>



<pre class="wp-block-preformatted">536.2/536.2 kB 32.9 MB/s eta 0:00:00<br>Collecting MarkupSafe&gt;=2.0<br>  Downloading https://pypi.tuna.tsinghua.edu.cn/packages/d6/25/55dc3ab959917602c96985cb1253efaa4ff42f71194bddeb61eb7278b8be/markupsafe-3.0.3-cp310-cp310-win_amd64.whl (15 kB)<br>Building wheels for collected packages: openai-whisper<br>  Building wheel for openai-whisper (pyproject.toml) ... done<br>  Created wheel for openai-whisper: filename=openai_whisper-20250625-py3-none-any.whl size=804012 sha256=b79cb7341847a20d4fabe9c7598d97d96ac3889885999c89b19c590fd2b9f4ff<br>  Stored in directory: c:\users\dell16a\appdata\local\pip\cache\wheels\d0\a3\00\22bcce5ea9156d33bdc12123c66d55e3424c4e85aca4aa2484<br>Successfully built openai-whisper<br>Installing collected packages: mpmath, urllib3, typing-extensions, sympy, regex, numpy, networkx, more-itertools, MarkupSafe, llvmlite, idna, fsspec, filelock, colorama, charset_normalizer, certifi, tqdm, requests, numba, jinja2, torch, tiktoken, openai-whisper<br>Successfully installed MarkupSafe-3.0.3 certifi-2026.4.22 charset_normalizer-3.4.7 colorama-0.4.6 filelock-3.29.0 fsspec-2026.4.0 idna-3.13 jinja2-3.1.6 llvmlite-0.47.0 more-itertools-11.0.2 mpmath-1.3.0 networkx-3.4.2 numba-0.65.1 numpy-2.2.6 openai-whisper-20250625 regex-2026.4.4 requests-2.33.1 sympy-1.14.0 tiktoken-0.12.0 torch-2.11.0 tqdm-4.67.3 typing-extensions-4.15.0 urllib3-2.6.3<br>​<br>[notice] A new release of pip available: 22.3.1 -&gt; 26.1.1<br>[notice] To update, run: python.exe -m pip install --upgrade pip</pre>



<p>备注：最后出现的「pip 升级提示」可升可不升，不影响 Whisper 使用；如果想升级，输入以下命令即可：</p>



<pre class="wp-block-preformatted">python.exe -m pip install --upgrade pip</pre>



<h4 class="wp-block-heading">第三步：安装 FFmpeg（必装！否则 Whisper 无法读取视频）</h4>



<p>FFmpeg 是一款音视频处理工具，Whisper 依赖它来读取视频/音频文件，不安装会出现「系统找不到指定的文件」报错（下文会详细讲这个报错的解决）。提供两种安装方式，任选一种即可，新手推荐第一种。</p>



<h5 class="wp-block-heading">方式一：通过 Python 命令快速安装（新手首选）</h5>



<ol class="wp-block-list">
<li>打开「命令提示符」窗口，输入以下命令，按回车： pip install ffmpeg-python -i https://pypi.tuna.tsinghua.edu.cn/simple</li>



<li>安装完成后，再输入以下命令（补充系统级 FFmpeg，避免遗漏）： winget install ffmpeg</li>



<li>等待安装完成，无需额外配置，即可正常使用。</li>
</ol>



<h5 class="wp-block-heading">方式二：官网下载安装（备用方案，适用于方式一报错）</h5>



<ol class="wp-block-list">
<li>打开 FFmpeg 官方下载页：<a href="https://ffmpeg.org/download.html">https://ffmpeg.org/download.html</a>；</li>



<li>找到「Windows builds」区域，点击对应的链接，下载最新版本的静态压缩包（如「ffmpeg-release-full.7z」）；</li>



<li>解压压缩包，将解压后的「ffmpeg.exe」文件，复制到「D:\Python310\Scripts」文件夹中（和 Python 安装路径对应）；</li>



<li>验证安装：在「命令提示符」中输入「ffmpeg -version」，按回车，能显示版本信息即安装成功。</li>
</ol>



<h3 class="wp-block-heading"><strong>三、Whisper 实操：一键提取视频字幕（核心步骤）</strong></h3>



<p>安装完成后，即可用 Whisper 提取视频字幕，支持语音转文字（无字幕视频）、硬字幕识别（画面烧录字幕），生成的 SRT 文件可直接导入剪映、PR 等剪辑工具。</p>



<h4 class="wp-block-heading">实操步骤（以 Windows 系统为例）</h4>



<ol class="wp-block-list">
<li>准备视频文件：将需要提取字幕的视频（如「housing分析设置.mp4」）放到容易找到的文件夹（推荐放到桌面，或某个路径无中文、无特殊符号的文件夹，避免报错）；</li>



<li>打开「命令提示符」，切换到视频所在文件夹： 如果视频在桌面，输入以下命令，按回车： <code>cd Desktop</code> 如果视频在其他文件夹如F盘，输入以下命令（替换为自己的视频路径），按回车： cd /d F:~video_made\haoyong8.top\housing力学分析</li>



<li>执行字幕提取命令： 复制以下命令，粘贴到「命令提示符」中，按回车（替换「housing分析设置.mp4」为自己的视频文件名）： </li>
</ol>



<h4 class="wp-block-heading">命令参数说明（新手必看）</h4>



<ul class="wp-block-list">
<li>「housing分析设置.mp4」：替换为你的视频文件名（如果文件名有中文，建议加英文双引号 &#8220;&#8221;，避免识别失败）；</li>



<li>&#8211;model small：使用「small」模型，兼顾识别速度和准确率，适合普通电脑；如果电脑配置较高，可替换为「medium」或「large」（识别率更高，但速度更慢）；</li>



<li>&#8211;output_format srt：指定输出格式为 SRT（剪映、PR 等工具均支持，可直接导入）；</li>



<li>&#8211;language zh：指定识别语言为中文，加快识别速度，提高识别准确率（如果是英文视频，可改为「&#8211;language en」）。</li>
</ul>



<pre class="wp-block-code"><code><code>whisper "housing_force1.mp4" --model small --output_format srt --language zh</code></code></pre>



<h4 class="wp-block-heading">实操效果</h4>



<p>\1. 第一次执行命令时，会自动下载「small」模型（约461M），下载速度取决于网络，耐心等待即可（下载完成后，后续使用无需重复下载）； 2. 模型下载完成后，Whisper 会自动识别视频中的语音/硬字幕，识别过程中会显示进度； 3. 识别完成后，视频所在文件夹会自动生成一个「housing分析设置.srt」文件（和视频文件名一致）； 4. 双击打开 SRT 文件，可查看字幕内容和时间轴，直接导入剪映即可使用（剪映中导入字幕，选择「导入字幕文件」，找到 SRT 文件即可）。</p>



<h3 class="wp-block-heading"><strong>四、常见报错及解决方案（实操避坑重点）</strong></h3>



<p>新手安装和使用过程中，可能会遇到一些报错，以下是实操中最常见的2个报错，附上详细解决方法（对应之前实操中遇到的问题）。</p>



<h4 class="wp-block-heading">报错1：FileNotFoundError: [WinError 2] 系统找不到指定的文件</h4>



<p>【报错场景】执行 Whisper 提取命令时，出现以下报错：</p>



<pre class="wp-block-preformatted">F:\~video_made\haoyong8.top\housing力学分析&gt;whisper housing分析设置.mp4 --model small --output_format srt<br>100%|███████████████████████████████████████| 461M/461M [00:23&lt;00:00, 20.2MiB/s]<br>D:\Python310\lib\site-packages\whisper\transcribe.py:132: UserWarning: FP16 is not supported on CPU; using FP32 instead<br>  warnings.warn("FP16 is not supported on CPU; using FP32 instead")<br>Traceback (most recent call last):<br>  File "D:\Python310\lib\site-packages\whisper\transcribe.py", line 615, in cli<br> &nbsp;  result = transcribe(model, audio_path, temperature=temperature, **args)<br>  File "D:\Python310\lib\site-packages\whisper\transcribe.py", line 139, in transcribe<br> &nbsp;  mel = log_mel_spectrogram(audio, model.dims.n_mels, padding=N_SAMPLES)<br>  File "D:\Python310\lib\site-packages\whisper\audio.py", line 140, in log_mel_spectrogram<br> &nbsp;  audio = load_audio(audio)<br>  File "D:\Python310\lib\site-packages\whisper\audio.py", line 58, in load_audio<br> &nbsp;  out = run(cmd, capture_output=True, check=True).stdout<br>  File "D:\Python310\lib\subprocess.py", line 503, in run<br> &nbsp;  with Popen(*popenargs, **kwargs) as process:<br>  File "D:\Python310\lib\subprocess.py", line 971, in __init__<br> &nbsp;  self._execute_child(args, executable, preexec_fn, close_fds,<br>  File "D:\Python310\lib\subprocess.py", line 1440, in _execute_child<br> &nbsp;  hp, ht, pid, tid = _winapi.CreateProcess(executable, args,<br>FileNotFoundError: [WinError 2] 系统找不到指定的文件。<br>Skipping housing分析设置.mp4 due to FileNotFoundError: [WinError 2] 系统找不到指定的文件。</pre>



<p>【报错原因】缺少 FFmpeg 工具，Whisper 无法读取视频文件；或视频路径/文件名有中文、特殊符号，导致识别失败。</p>



<p>【解决方案】</p>



<ol class="wp-block-list">
<li>优先安装 FFmpeg：按照本文「第二步：安装 FFmpeg」的步骤，重新安装 FFmpeg（推荐方式一，命令安装更快捷）；</li>



<li>检查视频路径和文件名：确保视频路径无中文、无特殊符号（如「~」「@」「#」等），如果有，修改为英文路径和文件名；</li>



<li>重新执行提取命令：如果文件名有中文，给文件名加上英文双引号，如： whisper &#8220;housing分析设置.mp4&#8221; &#8211;model small &#8211;output_format srt &#8211;language zh</li>
</ol>



<h4 class="wp-block-heading">报错2：python &#8211;version 提示“不是内部或外部命令”</h4>



<p>【报错场景】安装 Python 后，在「命令提示符」中输入「python &#8211;version」，提示“不是内部或外部命令，也不是可运行的程序或批处理文件”。</p>



<p>【报错原因】安装 Python 时，未勾选「Add Python 3.10 to PATH」，导致系统无法识别 Python 命令。</p>



<p>【解决方案】</p>



<ol class="wp-block-list">
<li>卸载当前 Python：打开「控制面板」→「程序和功能」，找到「Python 3.10.x」，右键卸载；</li>



<li>重新安装 Python：按照本文「第一步：安装 Python 3.10.x」的步骤，重新安装，<strong>务必勾选「Add Python 3.10 to PATH」</strong>；</li>



<li>重新验证：打开新的「命令提示符」，输入「python &#8211;version」，显示版本信息即解决。</li>
</ol>



<h4 class="wp-block-heading">报错3：pip install 下载慢/报错</h4>



<p>【报错场景】执行「pip install openai-whisper」时，下载速度极慢，或出现「Read timed out」超时报错。</p>



<p>【报错原因】默认使用国外的 Python 源，网络不稳定。</p>



<p>【解决方案】使用国内清华源，命令修改为：</p>



<pre class="wp-block-preformatted">pip install openai-whisper -i https://pypi.tuna.tsinghua.edu.cn/simple</pre>



<h3 class="wp-block-heading"><strong>五、补充方案：其他免费字幕提取工具（备用）</strong></h3>



<p>如果不想安装 Python 和 Whisper，可选择以下备用方案，同样免费、无次数限制，适合偶尔使用的场景。</p>



<h4 class="wp-block-heading">方案1：Video-Subtitle-Extractor（专门提取硬字幕）</h4>



<p>适合视频内有硬字幕（烧录在画面里）的场景，无需安装 Python，下载免安装版即可使用。</p>



<ol class="wp-block-list">
<li>下载工具： GitHub 地址：<a href="https://github.com/XingangPan/video-subtitle-extractor">Video-Subtitle-Extractor</a> 国内镜像（下载更快）：<a href="https://gitee.com/qq2276632042/video-subtitle-extractor">VSE 码云地址</a>，找到「Windows CPU 版本」，下载压缩包；</li>



<li>操作步骤： 解压下载的压缩包，双击打开「video_subtitle_extractor.exe」； 点击「导入视频」，选择需要提取字幕的视频； 框选视频中字幕出现的区域（避免识别到其他无关文字）； 点击「开始提取」，软件会自动 OCR 识别硬字幕，生成 SRT 文件； 识别完成后，可手动修改错别字，点击「导出字幕」，保存为 SRT 文件即可。</li>
</ol>



<h4 class="wp-block-heading">方案2：提词匠小程序（在线免费，无需装软件）</h4>



<p>适合手机端、偶尔提取字幕的场景，微信内直接使用，无需下载任何软件，支持导出 SRT 文件。</p>



<ol class="wp-block-list">
<li>打开方式：微信搜索「提词匠」小程序，认准正版（避免山寨小程序）；</li>



<li>操作步骤： 打开小程序后，选择「视频转文字」； 从手机相册或聊天记录中，选择需要提取字幕的视频； 等待识别完成（1分钟视频约5秒出结果）； 识别完成后，可复制字幕文本，或点击「导出 SRT」，将字幕文件保存到手机，再导入电脑剪映即可。</li>
</ol>



<p>备注：提词匠支持本地视频上传、音频上传，还支持粘贴国内主流平台（抖音、快手、视频号等）的公开视频链接提取字幕，处理后的文件服务器会立即删除，保护隐私。</p>



<h3 class="wp-block-heading"><strong>六、总结</strong></h3>



<p>本文分享的方案，完美解决剪映字幕识别限免不够用的问题，核心推荐「Python + OpenAI Whisper」组合，优势如下：</p>



<ul class="wp-block-list">
<li>完全免费，无次数限制，无水印，本地运行，不依赖网络；</li>



<li>识别率高，支持中文/英文等多语言，兼顾语音转文字、硬字幕识别；</li>



<li>生成的 SRT 文件可直接导入剪映、PR 等剪辑工具，无缝衔接剪辑流程；</li>



<li>批量处理方便，适合需要频繁提取字幕的小伙伴。</li>
</ul>



<p>整个流程从软件下载、安装，到实操命令、报错解决，都做了详细讲解，新手按照步骤操作，就能轻松搞定字幕提取。如果在操作过程中遇到其他报错，可直接复制报错提示，到我的博客留言交流，会第一时间帮忙排查解决！</p>
]]></content:encoded>
					
					<wfw:commentRss>https://xrange.haoyong8.top/openai-whisper-video/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Ansys Workbench单位一重启就恢复m单位，怎样永久固定为mm单位</title>
		<link>https://xrange.haoyong8.top/ansys-unit1/</link>
					<comments>https://xrange.haoyong8.top/ansys-unit1/#respond</comments>
		
		<dc:creator><![CDATA[轩然 拙见]]></dc:creator>
		<pubDate>Mon, 04 May 2026 12:55:38 +0000</pubDate>
				<category><![CDATA[CAE 仿真]]></category>
		<category><![CDATA[工具分类]]></category>
		<guid isPermaLink="false">https://xrange.haoyong8.top/?p=1829</guid>

					<description><![CDATA[软件版本ansys2024R1,正常mechanical中设置单位后，例如设置为mm、kg、s，关闭软件后再次打开都是国际单位制m、kg、s等，完全不记住之前的单位设置; 这里给一个彻底解决的方法
]]></description>
										<content:encoded><![CDATA[
<p>摘要: 软件版本ansys2024R1,正常mechanical中设置单位后，例如设置为mm、kg、s，关闭软件后再次打开都是国际单位制m、kg、s等，完全不记住之前的单位设置; 这里给一个彻底解决的方法</p>



<h3 class="wp-block-heading">经过数次验证，确认手动可以锁定配置文件（最彻底）</h3>



<p>这是最可靠的解决路径，可以直接“写死”你的单位偏好。</p>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img fetchpriority="high" decoding="async" width="369" height="240" src="https://xrange.haoyong8.top/wp-content/uploads/2026/05/image-20260504202447221.png" alt="" class="wp-image-1831" style="width:299px;height:auto" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/05/image-20260504202447221.png 369w, https://xrange.haoyong8.top/wp-content/uploads/2026/05/image-20260504202447221-300x195.png 300w" sizes="(max-width: 369px) 100vw, 369px" /></figure>
</div>


<ol class="wp-block-list">
<li><strong>关闭Ansys软件</strong>：确保Workbench和Mechanical都已完全退出。</li>



<li><strong>定位配置文件夹</strong>：在Windows资源管理器地址栏输入 <code>%appdata%\Ansys</code> 并回车。
<ul class="wp-block-list">
<li>你会看到一个以版本号命名的文件夹，例如 <code>v251</code> 代表2025 R1版本。进入对应你当前使用版本的文件夹。</li>
</ul>
</li>



<li><strong>找到配置文件</strong>：在该文件夹内，找到并进入 <code>UserRegFiles_XXXX</code> 目录（XXXX是随机数字）。里面有一个名为 <code>software.xml</code> 的文件，这个文件负责保存你在Mechanical中的各种偏好设置</li>
</ol>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img decoding="async" width="655" height="213" src="https://xrange.haoyong8.top/wp-content/uploads/2026/05/image-20260504202546266.png" alt="" class="wp-image-1832" style="width:459px;height:auto" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/05/image-20260504202546266.png 655w, https://xrange.haoyong8.top/wp-content/uploads/2026/05/image-20260504202546266-300x98.png 300w" sizes="(max-width: 655px) 100vw, 655px" /></figure>
</div>


<ol class="wp-block-list">
<li><strong>编辑文件</strong>：用记事本打开 <code>software.xml</code>，搜索 <code>currentunitsys</code>。你会看到类似 <code>&lt;setting name="currentunitsys" value="..."></code> 的字段。</li>



<li><strong>修改并锁定</strong>：将 <code>value</code> 修改为你需要的单位制代码1。<strong>关键步骤</strong>：保存文件后，右键点击 <code>software.xml</code>，选择“属性”，勾选“只读”，然后确定。这会强制Ansys只能读取你的设置，而无法将其重置</li>
</ol>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img decoding="async" width="745" height="146" src="https://xrange.haoyong8.top/wp-content/uploads/2026/05/image-20260504202628352-1.png" alt="" class="wp-image-1833" style="aspect-ratio:5.103429279713538;width:477px;height:auto" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/05/image-20260504202628352-1.png 745w, https://xrange.haoyong8.top/wp-content/uploads/2026/05/image-20260504202628352-1-300x59.png 300w" sizes="(max-width: 745px) 100vw, 745px" /></figure>
</div>


<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>注意</strong>：设置只读后，你在Mechanical中任何其他试图更改并保存设置的尝试也会失效。如果需要临时调整，记得先取消只读。</p>
</blockquote>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="390" height="497" src="https://xrange.haoyong8.top/wp-content/uploads/2026/05/image-20260504202800985-1.png" alt="" class="wp-image-1835" style="width:286px;height:auto" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/05/image-20260504202800985-1.png 390w, https://xrange.haoyong8.top/wp-content/uploads/2026/05/image-20260504202800985-1-235x300.png 235w" sizes="(max-width: 390px) 100vw, 390px" /></figure>
</div>]]></content:encoded>
					
					<wfw:commentRss>https://xrange.haoyong8.top/ansys-unit1/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>轩然阁・官方工具合集</title>
		<link>https://xrange.haoyong8.top/xrange-toollist/</link>
					<comments>https://xrange.haoyong8.top/xrange-toollist/#respond</comments>
		
		<dc:creator><![CDATA[轩然 拙见]]></dc:creator>
		<pubDate>Sun, 26 Apr 2026 10:19:39 +0000</pubDate>
				<category><![CDATA[工具分类]]></category>
		<guid isPermaLink="false">https://xrange.haoyong8.top/?p=1713</guid>

					<description><![CDATA[整理PVE 虚拟化、NAS 运维、软路由配置、CAE 仿真、服务器运维五大领域正版开源工具、官方公开测试版 / 教育试用版，所有链接均指向软件官方渠道，无破解、无盗版、无第三方修改包，仅用于技术学习与实操参考]]></description>
										<content:encoded><![CDATA[
<p>本页面整理<strong>PVE 虚拟化、NAS 运维、软路由配置、CAE 仿真、服务器运维</strong>五大领域正版开源工具、官方公开测试版 / 教育试用版，所有链接均指向软件官方渠道，仅用于技术学习与实操参考。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading">一、虚拟化 / PVE 部署工具（官方正版）</h3>



<h4 class="wp-block-heading">1. Proxmox VE（PVE）</h4>



<ul class="wp-block-list">
<li>官方下载：Proxmox VE 官方下载页 (<a href="https://www.proxmox.com/en/downloads" target="_blank" rel="noreferrer noopener">https://www.proxmox.com/en/downloads</a>)</li>



<li>适用场景：服务器虚拟化部署、多系统嵌套、All In One 主机搭建</li>



<li>配套教程待定：PVE 从零部署保姆级教程、PVE 网络桥接配置 、硬盘直通实操指南。</li>
</ul>



<h4 class="wp-block-heading">2. VMware Workstation Player（免费个人版）</h4>



<ul class="wp-block-list">
<li>官方下载：VMware 个人免费版官网 (<a href="https://www.vmware.com/products/workstation-player.html" target="_blank" rel="noreferrer noopener">https://www.vmware.com/products/workstation-player.html</a>)</li>



<li>适用场景：个人本地虚拟机测试、系统镜像调试</li>



<li>配套教程：VMware 虚拟机安装与网络配置, 镜像导入实操 </li>
</ul>



<h4 class="wp-block-heading">3. Ubuntu（开源 Linux 服务器系统）</h4>



<ul class="wp-block-list">
<li>官方网站：Ubuntu 官方首页 (<a href="https://ubuntu.com/" target="_blank" rel="noreferrer noopener">https://ubuntu.com/</a>)</li>



<li>官方下载：Ubuntu 桌面版 / 服务器版镜像下载 (<a href="https://ubuntu.com/download" target="_blank" rel="noreferrer noopener">https://ubuntu.com/download</a>)</li>



<li>适用场景：服务器搭建、Docker 部署、开发环境、家用虚拟机、长期稳定运维</li>



<li>配套教程：Ubuntu 24.04 零基础安装配置 、Ubuntu 常用命令大全 、Ubuntu 开机自启设置</li>
</ul>



<h4 class="wp-block-heading">4. VirtualBox（开源免费）</h4>



<ul class="wp-block-list">
<li>官方下载：VirtualBox 官方下载 (<a href="https://www.virtualbox.org/wiki/Downloads" target="_blank" rel="noreferrer noopener">https://www.virtualbox.org/wiki/Downloads</a>)</li>



<li>适用场景：轻量级本地虚拟化、小众系统测试</li>



<li>配套教程：VirtualBox 无坑安装、虚拟机互通配置</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading">二、NAS / 软路由运维工具（官方开源 / 正版）</h3>



<h4 class="wp-block-heading">1. 群晖 DSM（官方原版）</h4>



<ul class="wp-block-list">
<li>官方下载：iStoreOS 官方固件库 (<a href="https://www.istoreos.com/" target="_blank" rel="noreferrer noopener">https://www.istoreos.com/</a>)</li>



<li>适用场景：软路由系统部署、内网穿透、网络管理</li>



<li>配套教程：iStoreOS 安装配置、DDNS 动态域名 、IPv6 穿透设置 </li>
</ul>



<h4 class="wp-block-heading">2. 飞牛 OS（fnOS，国产 NAS 系统）</h4>



<ul class="wp-block-list">
<li>官方网站：飞牛私有云 fnOS 官方主页 (<a href="https://www.fnnas.com/" target="_blank" rel="noreferrer noopener">https://www.fnnas.com/</a>)</li>



<li>官方下载：飞牛 OS 系统镜像下载页 (<a href="https://www.fnnas.com/download" target="_blank" rel="noreferrer noopener">https://www.fnnas.com/download</a>)</li>



<li>适用场景：家庭 NAS 部署、私有云存储、影视媒体管理、Docker 应用容器化、轻量级服务器搭建</li>



<li>配套教程：飞牛 OS 虚拟机安装体验、硬盘直通与存储池配置 (<a href="https://xrange.haoyong8.top/pve-fnos1/">https://xrange.haoyong8.top/pve-fnos1/</a>)、外网访问设置</li>
</ul>



<h4 class="wp-block-heading">3. iStoreOS</h4>



<ul class="wp-block-list">
<li>官方下载：群晖 DSM 官方镜像 (<a href="https://www.synology.cn/zh-cn/support/download" target="_blank" rel="noreferrer noopener">https://www.synology.cn/zh-cn/support/download</a>)</li>



<li>适用场景：NAS 系统安装、硬盘挂载、网盘部署</li>



<li>配套教程：群晖 DSM 原版安装 、Docker 容器配置 、外网访问设置 </li>
</ul>



<h4 class="wp-block-heading">4. OpenWRT</h4>



<ul class="wp-block-list">
<li>官方下载：OpenWRT 官方固件 (<a href="https://openwrt.org/downloads" target="_blank" rel="noreferrer noopener">https://openwrt.org/downloads</a>)</li>



<li>适用场景：自定义软路由、高级网络调试</li>



<li>配套教程：OpenWRT 固件刷入、防火墙规则配置 </li>
</ul>



<h4 class="wp-block-heading">5. Portainer（开源免费）</h4>



<ul class="wp-block-list">
<li>官方下载：Portainer 官方部署指南 (<a href="https://www.portainer.io/download" target="_blank" rel="noreferrer noopener">https://www.portainer.io/download</a>)</li>



<li>适用场景：Docker 容器可视化管理</li>



<li>配套教程：Portainer 安装与容器管理 、自启配置 </li>
</ul>



<h4 class="wp-block-heading">6. 爱快 (iKuai) 软路由系统</h4>



<ul class="wp-block-list">
<li>官方网站：爱快 iKuai 官方主页 (<a href="https://www.ikuai8.com/" target="_blank" rel="noreferrer noopener">https://www.ikuai8.com/</a>)</li>



<li>官方下载：爱快路由系统固件下载页 (<a href="https://www.ikuai8.com/component/download" target="_blank" rel="noreferrer noopener">https://www.ikuai8.com/component/download</a>)</li>



<li>适用场景：软路由部署、企业级网络管理、DPI 七层流控、多 WAN 口负载均衡、内置 AC 无线管理、网络认证服务</li>



<li>配套教程：爱快软路由安装与基础配置 、多 WAN 口链路叠加设置 、IPv6 网络配置 </li>



<li>经测试iKuai在IPV6测试方面不如iStore稳定，经常因为IP前缀变化等问题失效，推荐用iStore替代iKuai系统</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading">三、CAE 仿真实用工具（官方正版 / 教育试用）</h3>



<h4 class="wp-block-heading">1. Abaqus（专业有限元仿真分析）</h4>



<ul class="wp-block-list">
<li>官方网站：SIMULIA Abaqus 官方主页 (<a href="https://www.3ds.com/products/simulia/abaqus/" target="_blank" rel="noreferrer noopener">https://www.3ds.com/products/simulia/abaqus/</a>)</li>



<li>教育版申请：达索系统 3DEXPERIENCE Edu 平台 (<a href="https://www.3ds.com/zh/edu/education/students/" target="_blank" rel="noreferrer noopener">https://www.3ds.com/zh/edu/education/students/</a>)</li>



<li>适用场景：结构力学仿真、非线性分析、多物理场耦合、工业产品性能验证</li>



<li>配套教程：Abaqus 学生版申请与安装 、材料本构模型设置 、仿真结果后处理 </li>
</ul>



<h4 class="wp-block-heading">2. HyperMesh（专业 CAE 前处理平台）</h4>



<ul class="wp-block-list">
<li>官方网站：Altair HyperMesh 官方主页 (<a href="https://www.altair.com/hypermesh" target="_blank" rel="noreferrer noopener">https://www.altair.com/hypermesh</a>)</li>



<li>教育版申请：Altair 学生版软件申请 (<a href="https://www.altair.com/academic/students" target="_blank" rel="noreferrer noopener">https://www.altair.com/academic/students</a>)</li>



<li>适用场景：CAE 仿真网格划分、几何清理修复、多求解器接口适配、复杂模型预处理</li>



<li>配套教程：HyperMesh 网格划分实操 、几何模型修复技巧 、求解器接口配置 </li>
</ul>



<h4 class="wp-block-heading">3. CST Studio Suite（电磁仿真专业工具）</h4>



<ul class="wp-block-list">
<li>官方网站：CST Studio Suite 官方主页 (<a href="https://www.3ds.com/products/simulia/cst-studio-suite/" target="_blank" rel="noreferrer noopener">https://www.3ds.com/products/simulia/cst-studio-suite/</a>)</li>



<li>学习版下载：CST Studio Suite LE 免费学习版 (<a href="https://www.3ds.com/ja/edu/education/students/solutions/cst-le" target="_blank" rel="noreferrer noopener">https://www.3ds.com/ja/edu/education/students/solutions/cst-le</a>)</li>



<li>适用场景：电磁场仿真、天线设计、射频电路分析、电磁兼容性 (EMC) 测试、多物理场耦合仿真</li>



<li>配套教程：CST 学习版安装与激活、天线仿真入门 、EMC 分析流程 </li>
</ul>



<h4 class="wp-block-heading">4. Ansys Workbench Student（多物理场仿真集成平台）</h4>



<ul class="wp-block-list">
<li>官方网站：Ansys Workbench 产品主页 (<a href="https://www.ansys.com/zh-cn/products/ansys-workbench" target="_blank" rel="noreferrer noopener">https://www.ansys.com/zh-cn/products/ansys-workbench</a>)</li>



<li>学生版下载：Ansys Student 官方下载页 (<a href="https://www.ansys.com/zh-cn/academic/students/ansys-student" target="_blank" rel="noreferrer noopener">https://www.ansys.com/zh-cn/academic/students/ansys-student</a>)</li>



<li>适用场景：结构力学、流体动力学、热分析、多物理场耦合仿真、工程优化设计</li>



<li>配套教程：Workbench 学生版安装配置 、仿真流程搭建 、参数化优化设计 </li>
</ul>



<h4 class="wp-block-heading">5. Ansys HFSS（3D 高频电磁仿真软件）</h4>



<ul class="wp-block-list">
<li>官方网站：Ansys HFSS 产品主页 (<a href="https://www.ansys.com/zh-cn/products/electronics/ansys-hfss" target="_blank" rel="noreferrer noopener">https://www.ansys.com/zh-cn/products/electronics/ansys-hfss</a>)</li>



<li>学生版下载：Ansys Electronics Desktop Student 官方下载 (<a href="https://www.ansys.com/zh-cn/academic/students/ansys-electronics-desktop-student" target="_blank" rel="noreferrer noopener">https://www.ansys.com/zh-cn/academic/students/ansys-electronics-desktop-student</a>)</li>



<li>适用场景：天线设计、射频 / 微波组件仿真、高速互连分析、连接器电磁性能验证、电磁兼容性 (EMC) 测试</li>



<li>配套教程：HFSS 学生版安装激活 、天线仿真基础、连接器 EMI 分析 </li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading">四、通用运维开源工具（官方正版）</h3>



<h4 class="wp-block-heading">1. Docker（开源容器）</h4>



<ul class="wp-block-list">
<li>官方下载：Docker 官方下载 (<a href="https://www.docker.com/get-started/" target="_blank" rel="noreferrer noopener">https://www.docker.com/get-started/</a>)</li>



<li>适用场景：服务容器化部署、环境隔离</li>



<li>配套教程：Docker 安装与镜像拉取、容器自启设置 </li>
</ul>



<ul class="wp-block-list">
<li></li>
</ul>



<h4 class="wp-block-heading">2. PuTTY（开源远程连接）</h4>



<ul class="wp-block-list">
<li>官方下载：PuTTY 官方下载 (<a href="https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html" target="_blank" rel="noreferrer noopener">https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html</a>)</li>



<li>适用场景：服务器 SSH 远程连接、命令行调试</li>



<li>配套教程：SSH 连接配置 、密钥登录设置 </li>
</ul>



<h4 class="wp-block-heading">3. FinalShell（全能远程运维工具）</h4>



<ul class="wp-block-list">
<li>官方官网：FinalShell 官方网站 (<a href="https://www.hostbuf.com/" target="_blank" rel="noreferrer noopener">https://www.hostbuf.com/</a>)</li>



<li>官方下载：FinalShell 最新版下载地址 (<a href="https://www.hostbuf.com/t/988" target="_blank" rel="noreferrer noopener">https://www.hostbuf.com/t/988</a>)</li>



<li>适用场景：跨平台 SSH 远程连接、SFTP 文件管理、服务器硬件监控、内网加速</li>



<li>配套教程：FinalShell 快速上手基础配置 </li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading">📌 工具使用须知</h3>



<ol class="wp-block-list">
<li>本站仅提供官方正版 / 开源 / 正规教育试用工具链接，不提供破解补丁。</li>



<li>商业用途请务必购买软件官方授权，遵守相关软件版权协议与开源协议，合规使用工具。</li>



<li>部分试用版 / 学生版有使用权限与场景限制，安装前请仔细阅读官方许可协议。</li>



<li>本站不对第三方官方工具的使用风险、版本兼容性承担责任，实操前请做好数据备份。</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading">⚖️ 免责声明</h3>



<ol class="wp-block-list">
<li>本页面所有工具链接均来源于软件官方公开渠道，仅用于技术交流、学习研究，无任何商业盈利目的。</li>



<li>若部分工具链接涉及版权争议、官方下架，请通过网站留言或联系邮箱反馈，本站会第一时间核实并删除相关链接。</li>



<li>用户自行下载、安装、使用工具所产生的一切法律责任与风险，由用户自行承担。</li>



<li>本站配套教程仅为技术实操分享，不代表官方指导，仅供学习参考。</li>
</ol>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://xrange.haoyong8.top/xrange-toollist/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Ansys2024仿真软件安装教程</title>
		<link>https://xrange.haoyong8.top/ansys2024-setup/</link>
					<comments>https://xrange.haoyong8.top/ansys2024-setup/#comments</comments>
		
		<dc:creator><![CDATA[轩然 拙见]]></dc:creator>
		<pubDate>Sun, 19 Apr 2026 02:51:13 +0000</pubDate>
				<category><![CDATA[工具分类]]></category>
		<guid isPermaLink="false">https://xrange.haoyong8.top/?p=1608</guid>

					<description><![CDATA[Ansys2024软件安装教程，适配新手小白，助力快速上手。该版本适配Windows11系统，经实测可完美运行、稳定性拉满；搭载AI增强功能与高效GPU求解器，仿真速度大幅提升，还优化了用户界面、支持多物理场仿真，兼顾易用性与专业性，适配多行业工程设计需求，新手也能轻松驾驭。]]></description>
										<content:encoded><![CDATA[
<p>Ansys2024软件安装教程，适配新手小白，助力快速上手。该版本适配Windows11系统，经实测可完美运行、稳定性拉满；搭载AI增强功能与高效GPU求解器，仿真速度大幅提升，还优化了用户界面、支持多物理场仿真，兼顾易用性与专业性，适配多行业工程设计需求，新手也能轻松驾驭</p>


<div style="padding:10px; background:#f5f5f5; border-radius:4px;">🔒 请登录后操作，解锁隐藏内容</div>



<ol class="wp-block-list">
<li>解压安装压缩包</li>
</ol>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="352" height="302" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419102120406.png" alt="" class="wp-image-1610" style="aspect-ratio:1.16563179136914;width:286px;height:auto" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419102120406.png 352w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419102120406-300x257.png 300w" sizes="(max-width: 352px) 100vw, 352px" /></figure>
</div>


<ol start="2" class="wp-block-list">
<li>管理员权限打开setup</li>
</ol>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="510" height="583" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419102109060.png" alt="" class="wp-image-1611" style="aspect-ratio:0.8748090375492482;width:377px;height:auto" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419102109060.png 510w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419102109060-262x300.png 262w" sizes="(max-width: 510px) 100vw, 510px" /></figure>
</div>


<ol start="3" class="wp-block-list">
<li>安装Ansys License manager, ok</li>
</ol>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="289" height="327" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419102054057.png" alt="" class="wp-image-1612" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419102054057.png 289w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419102054057-265x300.png 265w" sizes="(max-width: 289px) 100vw, 289px" /></figure>
</div>

<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="247" height="194" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419102032701.png" alt="" class="wp-image-1613" style="aspect-ratio:1.2733204446592556;width:313px;height:auto"/></figure>
</div>


<ol start="4" class="wp-block-list">
<li>同意, 下一个</li>
</ol>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="606" height="232" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419102021253.png" alt="" class="wp-image-1614" style="aspect-ratio:2.6122448979591835;width:480px;height:auto" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419102021253.png 606w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419102021253-300x115.png 300w" sizes="(max-width: 606px) 100vw, 606px" /></figure>
</div>


<ol start="5" class="wp-block-list">
<li>设定安装目录</li>
</ol>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="710" height="403" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419102006270.png" alt="" class="wp-image-1615" style="aspect-ratio:1.7618161374122756;width:582px;height:auto" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419102006270.png 710w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419102006270-300x170.png 300w" sizes="(max-width: 710px) 100vw, 710px" /></figure>
</div>


<ol start="6" class="wp-block-list">
<li>下一步、下一步</li>
</ol>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="599" height="361" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101930621.png" alt="" class="wp-image-1616" style="aspect-ratio:1.6593083149374541;width:518px;height:auto" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101930621.png 599w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101930621-300x181.png 300w" sizes="(max-width: 599px) 100vw, 599px" /></figure>
</div>

<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="581" height="326" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101908328.png" alt="" class="wp-image-1617" style="aspect-ratio:1.7822460815798302;width:498px;height:auto" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101908328.png 581w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101908328-300x168.png 300w" sizes="(max-width: 581px) 100vw, 581px" /></figure>
</div>


<ol start="7" class="wp-block-list">
<li>不要勾选退出时启动授权管理中心，继续</li>
</ol>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="602" height="363" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101851216.png" alt="" class="wp-image-1618" style="aspect-ratio:1.6584305453919332;width:548px;height:auto" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101851216.png 602w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101851216-300x181.png 300w" sizes="(max-width: 602px) 100vw, 602px" /></figure>
</div>


<ol start="8" class="wp-block-list">
<li>点击退出</li>
</ol>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="623" height="226" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101828448.png" alt="" class="wp-image-1619" style="aspect-ratio:2.7567586254580654;width:546px;height:auto" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101828448.png 623w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101828448-300x109.png 300w" sizes="(max-width: 623px) 100vw, 623px" /></figure>
</div>


<ol start="9" class="wp-block-list">
<li>回到安装包位置，复制Ansys Inc文件夹</li>
</ol>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="476" height="298" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101817228.png" alt="" class="wp-image-1620" style="aspect-ratio:1.5973467568559594;width:413px;height:auto" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101817228.png 476w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101817228-300x188.png 300w" sizes="(max-width: 476px) 100vw, 476px" /></figure>
</div>


<ol start="10" class="wp-block-list">
<li>安装文件夹粘贴替换</li>
</ol>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="476" height="350" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101803465.png" alt="" class="wp-image-1621" style="aspect-ratio:1.360016072146078;width:354px;height:auto" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101803465.png 476w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101803465-300x221.png 300w" sizes="(max-width: 476px) 100vw, 476px" /></figure>
</div>


<p>11.开始菜单打开Ansys License Managerment Center</p>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="320" height="305" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101747877.png" alt="" class="wp-image-1622" style="aspect-ratio:1.0491828474819407;width:248px;height:auto" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101747877.png 320w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101747877-300x286.png 300w" sizes="(max-width: 320px) 100vw, 320px" /></figure>
</div>


<p>12.在网页页面复制Mac Address</p>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="792" height="430" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101737180.png" alt="" class="wp-image-1623" style="aspect-ratio:1.8418910570878302;width:619px;height:auto" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101737180.png 792w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101737180-300x163.png 300w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101737180-768x417.png 768w" sizes="(max-width: 792px) 100vw, 792px" /></figure>
</div>


<ol start="13" class="wp-block-list">
<li>安装包位置Crack下License替换Mac address</li>
</ol>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="369" height="310" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101721528.png" alt="" class="wp-image-1624" style="aspect-ratio:1.1903825797671252;width:340px;height:auto" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101721528.png 369w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101721528-300x252.png 300w" sizes="(max-width: 369px) 100vw, 369px" /></figure>
</div>


<ol start="14" class="wp-block-list">
<li>网页Add a License File安装License, 然后退出</li>
</ol>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="801" height="489" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101707575.png" alt="" class="wp-image-1625" style="aspect-ratio:1.638057197635405;width:635px;height:auto" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101707575.png 801w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101707575-300x183.png 300w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101707575-768x469.png 768w" sizes="(max-width: 801px) 100vw, 801px" /></figure>
</div>


<ol start="15" class="wp-block-list">
<li>正式安装Ansys产品</li>
</ol>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="411" height="280" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101656290.png" alt="" class="wp-image-1626" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101656290.png 411w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101656290-300x204.png 300w" sizes="(max-width: 411px) 100vw, 411px" /></figure>
</div>


<ol start="16" class="wp-block-list">
<li>同意，下一个</li>
</ol>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="739" height="404" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101645429.png" alt="" class="wp-image-1627" style="aspect-ratio:1.829310744952425;width:585px;height:auto" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101645429.png 739w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101645429-300x164.png 300w" sizes="(max-width: 739px) 100vw, 739px" /></figure>
</div>


<ol start="17" class="wp-block-list">
<li>下一个</li>
</ol>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="714" height="411" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101633300.png" alt="" class="wp-image-1628" style="width:589px;height:auto" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101633300.png 714w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101633300-300x173.png 300w" sizes="(max-width: 714px) 100vw, 714px" /></figure>
</div>


<ol start="18" class="wp-block-list">
<li>输入localhost, 下一个</li>
</ol>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="717" height="414" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101619168.png" alt="" class="wp-image-1629" style="width:592px;height:auto" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101619168.png 717w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101619168-300x173.png 300w" sizes="(max-width: 717px) 100vw, 717px" /></figure>
</div>


<ol start="19" class="wp-block-list">
<li>下一个，</li>
</ol>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="719" height="410" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101607084-1.png" alt="" class="wp-image-1631" style="aspect-ratio:1.7536872594229964;width:624px;height:auto" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101607084-1.png 719w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101607084-1-300x171.png 300w" sizes="(max-width: 719px) 100vw, 719px" /></figure>
</div>


<ol start="20" class="wp-block-list">
<li>下一个，</li>
</ol>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="714" height="415" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101551701.png" alt="" class="wp-image-1632" style="aspect-ratio:1.7205467073308482;width:624px;height:auto" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101551701.png 714w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101551701-300x174.png 300w" sizes="(max-width: 714px) 100vw, 714px" /></figure>
</div>


<ol start="21" class="wp-block-list">
<li>下一步，浏览选择3文件夹</li>
</ol>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="482" height="280" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101536000.png" alt="" class="wp-image-1633" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101536000.png 482w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101536000-300x174.png 300w" sizes="(max-width: 482px) 100vw, 482px" /></figure>
</div>


<p>22.下一个</p>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="488" height="262" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101509278.png" alt="" class="wp-image-1634" style="aspect-ratio:1.8626468658674777;width:414px;height:auto" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101509278.png 488w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101509278-300x161.png 300w" sizes="(max-width: 488px) 100vw, 488px" /></figure>
</div>


<p>23.安装包step2复制Ansys inc文件夹</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="389" height="199" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101457680.png" alt="" class="wp-image-1635" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101457680.png 389w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101457680-300x153.png 300w" sizes="(max-width: 389px) 100vw, 389px" /></figure>
</div>


<ol start="24" class="wp-block-list">
<li>安装文件夹粘贴替换，安装完成</li>
</ol>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="296" height="315" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101446436.png" alt="" class="wp-image-1636" srcset="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101446436.png 296w, https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101446436-282x300.png 282w" sizes="(max-width: 296px) 100vw, 296px" /></figure>
</div>


<ol start="25" class="wp-block-list">
<li>开始菜单拉取Workbench到桌面快捷方式，双击打开即可。</li>
</ol>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="238" height="277" src="https://xrange.haoyong8.top/wp-content/uploads/2026/04/image-20260419101437079-1.png" alt="" class="wp-image-1638" style="aspect-ratio:0.8592463048629132;width:325px;height:auto"/></figure>
</div>]]></content:encoded>
					
					<wfw:commentRss>https://xrange.haoyong8.top/ansys2024-setup/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
