File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,9 +10,27 @@ LemonLime 是为了 OI 比赛而生的基于 Lemon + LemonPlus 的轻量评测
1010
1111在 Windows 系统下可以解压压缩包,双击 `lemon.exe` 运行程序。如无法打开,可以尝试安装同目录下的 `vc_redist.x64.exe` 解决。
1212
13- 在 Linux 系统下可以在软件目录下通过终端运行 `chmod +x ./LemonLime-linux-...` 赋予读写权限 ,然后直接运行 `./LemonLime-linux-...` 启动。
13+ 在 Linux 系统下可以在软件目录下通过终端运行 `chmod +x ./LemonLime-linux-...` 赋予权限 ,然后直接运行 `./LemonLime-linux-...` 启动。
1414
15- 如还未配置编译器(如第一次运行)会弹出编译器配置弹窗。对于 C++,则需要选择 g++ 所在路径。一种简单的方法是直接使用 Dev-C++ 自带的编译器(一般在 `C:\Program Files (x86)\Dev-Cpp\MinGW64\bin\g++.exe` ),但我们不建议你这么做。
15+ 如果启动时出现:
16+
17+ ```bash
18+ error while loading shared libraries: libxcb-cursor.so.0: cannot open shared object file: No such file or directory
19+ ```
20+
21+ 则表示系统缺少必要的库。在初次安装的 NOI Linux 2.0 下此类问题非常常见,你需要执行以下命令安装必要的库:
22+
23+ ```bash
24+ sudo apt update
25+ sudo apt upgrade -y
26+ sudo apt install libxcb-cursor0
27+ ```
28+
29+ 您可以 # link (" https://mirrors.ustc.edu.cn/help/ubuntu.html" )[换源] 来加速安装过程。如果您不是很熟悉 Linux,Ubuntu 提供图形界面的换源功能,您可以在搜索引擎搜索 `Ubuntu 20.04 图形界面换源` (20.04 是 NOI Linux 2.0 的对应 Ubuntu 的版本号)相关关键词得到教程。
30+
31+ 遇到问题请善用搜索引擎。
32+
33+ 如还未配置编译器(如第一次运行)会弹出编译器配置弹窗。对于 C++,则需要选择 g++ 所在路径。一种简单的方法是直接使用 Dev-C++ 自带的编译器(一般在 `C:\Program Files (x86)\Dev-Cpp\MinGW64\bin\g++.exe` ),但我们不建议你这么做。如果 g++ 已经在环境变量中,一般不需要手动选择。
1634
1735我们提供了一份 # link (" https://Project-LemonLime.github.io/Project_LemonLime/example.zip" )[样例],在 LemonLime 中将其打开后,点击左上角的 控制\> 自动添加试题,即可看到一道默认的 `plus` 试题。
1836
You can’t perform that action at this time.
0 commit comments