Unknown module(s) in QT: xlsx解决方法

解决方法在此: https://github.com/dbzhang800/QtXlsxWriter



Documentation: http://qtxlsx.debao.me

QtXlsx is a library that can read and write Excel files. It doesn‘t require Microsoft Excel and can be used in any platform that Qt5 supported. The library can be used to

Generate a new .xlsx file from scratch

Extract data from an existing .xlsx file

Edit an existing .xlsx file

Getting Started

For linux user, if your Qt is installed through package manager tools such "apt-get", make sure that you have installed the Qt5 develop package qtbase5-private-dev

Usage(1): Use Xlsx as Qt5‘s addon module

Building the module

Note: Perl is needed in this step.

Download the source code.

Put the source code in any directory you like

Go to top directory of the project in a terminal and run

qmake
make
make install

The library, the header files, and others will be installed to your system.

make html_docs can be used to generate documentations of the library, and make check can be used to run unit tests of the library.

原文地址:https://www.cnblogs.com/Genesis-007/p/8566237.html

时间: 2024-08-04 07:17:37

Unknown module(s) in QT: xlsx解决方法的相关文章

安装qwt-6.1.0时 make出错 :Project ERROR: Unknown module(s) in QT: svg

如果出现这样的错误:Project ERROR: Unknown module(s) in QT: svg 很 有可能 qmake 版本不一致造成的. qmake  , qtcreator  , qtdesigner 和 QT 的版本必须一致.要么是 QT4 ,要么就是 QT5, qtcreator是QT5特有的core,ui编译IDE,其中ui编辑会调用qtdesigner.  我的linux 中安装了QT4和QT 5.所以安装的时候出现了一些版本不兼容的问题,后来把版本一一统一后,问题就消除

关于cannot find module 'xxxx’的一个可能解决方法。

关于cannot find module 'xxxx'的一个可能解决方法. 由于学习angular2,想单独学习一下typescript下angular2使用的'rxjs'是怎么使用的,我用npm自己安装了rxjs,并使用了如下语句 import { Observable } from 'rxjs'; 报错如下: cannot find module 'rxjs', 但是同样的语句在angular/cli生成的angular项目下是不报错的,我找了半天,各种解决方法都不适用于我遇到的情况.由于这

ubuntu下安装nginx错误error: the HTTP rewrite module requires the PCRE library 解决方法

本文为大家讲解的是ubuntu下安装nginx错误error: the HTTP rewrite module requires the PCRE library 解决方法,感兴趣的同学参考下. 本文为大家讲解的是ubuntu下安装nginx错误error: the HTTP rewrite module requires the PCRE library 解决方法,感兴趣的同学参考下. 错误描述: ubuntu安装nginx时提示error: the HTTP rewrite module r

编绎显示Unknown type name “CGFloat”等 错误解决方法

一.编绎显示Unknown type name "CGFloat" 等 错误解决方法 将Compile Sources As 改为 Objective-C++ 二.如果是extern const引起的.直接加头文件 #import <UIKit/UIKit.h>

Intellij-出现Module ** must not contain source root **. The root already belongs to module **这类错误的解决方法

出现这个问题的原因是,多模块Maven项目,parent目录不能不能有src的code.找到parent 的 Source Folders看看是否把module的给加载进来了.删掉就可以了. 参考: [1]IDEA出现Module ** must not contain source root **. The root already belongs to module **这类错误的解决方法 原文地址:https://www.cnblogs.com/happyflyingpig/p/12267

Error loading MySQLdb module: No module named MySQLdb 错误的解决方法

具体报错如下: django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module: No module named MySQLdb 解法办法: 需要安装python连接mysql的模块 注意:本人使用yum install MySQL-pyton安装后依然报上错误,经测试必须要pip方式安装 pip install mysql-python 如果安装报以下错误: pip install pandas` gives

pip is configured with locations that require TLS/SSL, however the ssl module in Python is not 解决方法

pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available 解决方法 问题 今天在安装 Pygame 的时候,发现照着之前自己写的教程出现了问题. pip is configured with locations that require TLS/SSL, however the ssl module in Python is not availa

XCODE unknown type name __declspec 错误的解决方法

解决方法: 1.升级unity,即可(我没试过,因为项目原因,不能升级unity,否则要完蛋=.=) 2.找到"il2cpp-config.h"文件,将 "#define NORETURN __declspec(noreturn)" 替换为 "#define NORETURN __attribute__((noreturn))"

使用Maven运行测试提示Module sdk 1.5的解决方法

解决方法: 1. 配置Project Structure 2. 在MAVEN_HOME/conf/setting.xml中添加profile 3. 在Maven项目的pom.xml文件里添加标签 三种方法都可以解决问题,推荐第三种方法. 原文地址:https://www.cnblogs.com/nemowang1996/p/10798128.html