为 J 语言安装 JQt IDE,出现错误
Installing JQt IDE for the J language, getting error
我一直在按照此处的说明进行操作:
http://code.jsoftware.com/wiki/System/Installation/Linux
在 Ubuntu 新计算机上安装 J,一切都已更新。在安装 JQt IDE
之前,我已经设法按照所有说明进行操作
http://code.jsoftware.com/wiki/Guides/Qt_IDE/Install
当我搜索第一个列出的各种文件路径时,比如 /usr/bin
,我没有看到任何 jqt.sh
也不知道哪个是 "the J install directory" 因为我只将 .deb 文件下载到我的下载文件夹,然后在其他地方安装其他文件。
当我尝试 运行
sudo jqt
我明白了
"/usr/bin/libjqt.so"
"could not resolve: state_run:
Cannot load library /usr/bin/libjqt.so: (libQt5WebSockets.so.5: cannot open shared object file: No such file or directory)"
安装 libQt5WebSockets.so.5
包,sudo apt-get install libqt5websockets5
mv /usr/bin/libjqt.so /usr/lib/x86_64-linux-gnu
确实为我解决了这个问题。
我一直在按照此处的说明进行操作:
http://code.jsoftware.com/wiki/System/Installation/Linux
在 Ubuntu 新计算机上安装 J,一切都已更新。在安装 JQt IDE
之前,我已经设法按照所有说明进行操作http://code.jsoftware.com/wiki/Guides/Qt_IDE/Install
当我搜索第一个列出的各种文件路径时,比如 /usr/bin
,我没有看到任何 jqt.sh
也不知道哪个是 "the J install directory" 因为我只将 .deb 文件下载到我的下载文件夹,然后在其他地方安装其他文件。
当我尝试 运行
sudo jqt
我明白了
"/usr/bin/libjqt.so"
"could not resolve: state_run:
Cannot load library /usr/bin/libjqt.so: (libQt5WebSockets.so.5: cannot open shared object file: No such file or directory)"
安装 libQt5WebSockets.so.5
包,sudo apt-get install libqt5websockets5
mv /usr/bin/libjqt.so /usr/lib/x86_64-linux-gnu
确实为我解决了这个问题。