gpt4 book ai didi

wsl-2 - 如何在WSL中安装和使用Wt(web GUI库)

转载 作者:行者123 更新时间:2023-12-04 08:06:46 25 4
gpt4 key购买 nike

我在 Windows 10 上使用 WSL2 (Debian)。

如何安装和使用 Wt 库?

当我尝试使用Wt网站推荐的命令时

$ sudo apt-get install witty witty-dev witty-doc witty-dbg witty-examples

我明白了:

E: Unable to locate package witty
E: Unable to locate package witty-dev
E: Unable to locate package witty-doc
E: Unable to locate package witty-dbg
E: Unable to locate package witty-examples

最佳答案

下载

必需的包

$ sudo apt -y install g++ cmake

安装升压库

$ tar xvfz boost_1_75_0.tar.gz
$ cd boost_1_75_0
$ ./bootstrap.sh
$ sudo ./b2 install

头文件和库分别在/usr/local/include/boost/usr/local/lib中。

$ sudo ldconfig /usr/local/lib    # Update ldconfig cache

安装重量库

$ tar xvfz wt-4.5.0.tar.gz
$ cd wt-4.5.0
$ mkdir build
$ cd build
$ cmake ../
$ make
$ sudo make install
$ make -C examples # optional

试一试

(需要示例)

$ cd examples/hello/
$ ln -s ../../../resources/
$ ./hello.wt --docroot . --http-listen 0.0.0.0:8080

打开浏览器并浏览到http://127.0.0.1:8080/ .

关于wsl-2 - 如何在WSL中安装和使用Wt(web GUI库),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66189938/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com