Skip to content

Commit c9762e3

Browse files
committed
Add guide of installing mathematica
1 parent d3d279b commit c9762e3

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

docs/vlab-software/installation.md

+26
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,29 @@
99
```shell title="pv1:/root/vlab-software/code-server.sh"
1010
--8<-- "vlab-software/code-server.sh"
1111
```
12+
13+
## Mathematica
14+
15+
(以下命令酌情修改)
16+
17+
本地:
18+
19+
```shell
20+
docker run --rm -it -v $HOME/tmp/mathematica/:/opt/vlab/mathematica-14/ -v $(pwd)/Wolfram_14.1.0_LIN_Bndl.sh:/setup.sh ustclug/ubuntu:22.04
21+
```
22+
23+
容器中安装:
24+
25+
- xz-utils
26+
27+
Mathematica 主体安装路径:`/opt/vlab/mathematica-14/`
28+
29+
Wolfram Script 随便找个路径,只是一堆软链接,之后放到 `/opt/vlab/bin` 即可,像这样:
30+
31+
```shell
32+
for i in /opt/vlab/mathematica-14/Executables/*; do ln -sf $i $(basename $i); done
33+
```
34+
35+
默认 mathematica 的文档是英文的。另外有个中文文档的安装包。考虑到我们最开始放了中文文档包,建议文档换成这个。脚本不会让你选安装路径,所以需要手动 `mv /usr/share/Wolfram/Documentation/14.1/zh-hans-cn/Documentation/ChineseSimplified /opt/vlab/mathematica-14/Documentation/`
36+
37+
然后 rsync 到 pv9 测试(pv9 不会自动更新 Vlab Software)。可以把自己的容器移到 pv9 用来测试效果。

0 commit comments

Comments
 (0)