问题描述
我正在尝试使用Intel XDK(内部Centos 7 64位vmware计算机)。
我已经使用sudo执行了安装。
安装完成后,一切似乎都正常。然后,我尝试运行该应用程序,但未显示任何内容。
此外,我还尝试重新安装所有root用户,但仍然没有。
有任何提示吗?
按照以下步骤操作,即可启动最新版本的
第2步:
-
提取文件并转到rpm文件夹
-
在终端
-
这样安装rpm软件包:
rpm -iv --nodeps intel-xdk-pset-3759.0-0.noarch.rpm
步骤3:
不幸的是,由于某种原因,先前的安装无法完成,因此我发现的解决方案是我们必须解压缩
文件: intel-xdk-3759.0.0.tgz
并将内容复制/粘贴到 / opt / intel / XDK
步骤4:
更正符号链接文件 libudev.so.0
首先从/ opt / intel / XDK文件夹中删除该链接,
a然后运行: ln -s /usr/lib64/libudev.so.1 ./libudev.so.0
在终端机中
最后一步:
启动Intel XDK:
./ xdk.sh
注意:
- 无法从XDK源文件直接安装,因为安装程序无法发现gtk2已正确安装在CentOS系统中。
I'm trying to work with Intel XDK (Inside Centos 7 64 bits vmware machine).
I've executed the install with sudo.
Everything seems OK after finishing the installation. Then I've tried to run the application, but nothing shows up.
Also I've tried reinstalling over again all as root, but still nothing.
Any hint?
Follow these steps to be able to start the latest version of Intel XDK and get it working
On CentOS Linux 7.2 or 7.3 (7.2.1511 , 7.3.1611)
STEP 1:
Download the latest release
https://xdk2-installers.s3.amazonaws.com/xdk/xdk_web_linux64_master_3900.tgz
Or direct download from Intel web site:
STEP 2:
Extract the files and go to the rpm folder
Open in Terminal
Install the rpm package like this:
rpm -iv --nodeps intel-xdk-pset-3759.0-0.noarch.rpm
STEP 3:
Unfortunately the previous install will not be complete, for some reason, so the solution I found is that we have to decompress the
file: intel-xdk-3759.0.0.tgz
and copy/paste the content to /opt/intel/XDK
STEP 4:
Correct the symbolic link file libudev.so.0
First remove that link from the /opt/intel/XDK folder,
and then run: ln -s /usr/lib64/libudev.so.1 ./libudev.so.0
in a terminal
FINAL STEP:
Start Intel XDK:
./xdk.sh
Note:
- Installing directly from the XDK source file is not possible because the installer is not able to find that gtk2 is already installed correctly, if so, in a CentOS system.
这篇关于Intel XDK在Centos 7 64bits(vmware虚拟机)上不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!