安装CAJViewer出现wine使用报错:error-ld-so-object-ld-preload-cannot-be-preloaded

在Ubuntu中需要看知网的caj格式论文,需要使用wine安装CAJViewer 7.2.self.exe

下面是安装过程:

使用sudo apt-get install wine安装wine后,使用wine报错:

1
2
3
4
5
$ wine
ERROR: ld.so: object '/usr/lib/libtcmalloc_minimal.so.4' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS64): ignored.
Usage: wine PROGRAM [ARGUMENTS...] Run the specified program
wine --help Display this help and exit
wine --version Output version information and exit

阅读全文

apt-get update出错:无法下载

ubuntu: 16.04

apt-get update报错信息:

1
2
3
4
5
6
7
8
9
10
...
忽略:23 http://ppa.launchpad.net/fcitx-team/nightly/ubuntu xenial/main amd64 DEP-11 Metadata
忽略:24 http://ppa.launchpad.net/fcitx-team/nightly/ubuntu xenial/main DEP-11 64x64 Icons
已下载 109 kB,耗时 46秒 (2,356 B/s)
正在读取软件包列表... 完成
W: 仓库 “http://ppa.launchpad.net/fcitx-team/nightly/ubuntu xenial Release” 没有 Release 文件。
N: 无法认证来自该源的数据,所以使用它会带来潜在风险。
N: 参见 apt-secure(8) 手册以了解仓库创建和用户配置方面的细节。
E: 无法下载 http://ppa.launchpad.net/fcitx-team/nightly/ubuntu/dists/xenial/main/binary-amd64/Packages 404 Not Found
E: 部分索引文件下载失败。如果忽略它们,那将转而使用旧的索引文件。

阅读全文

django报错:'set' object is not reversible

报错信息

信息如下:

1
2
3
4
5
6
7
8
9
TypeError at /
'set' object is not reversible
Request Method: GET
Request URL: http://127.0.0.1:8000/
Django Version: 2.0.4
Exception Type: TypeError
Exception Value:
'set' object is not reversible
...

阅读全文

ubuntu18.04安装wine、PlayOnLinux、Office2010-word-excel系列、TIM、微信、迅雷极速版、百度网盘、网易云音乐

安装wine过程:

1
2
3
sudo add-apt-repository ppa:ubuntu-wine/ppa
sudo apt-get update
sudo apt-get install wine:i386

阅读全文

Tesseract安装使用

ubuntu: 16.04
Tesseract: 4.0.0-beta-1 版本

安装Tesseract

安装Tesseract 4.0.0-beta-1 版本,方法来自官方wiki: https://github.com/tesseract-ocr/tesseract/wiki

Tesseract 4.0.0-beta-1包含LSTM引擎和相关的训练数据。

阅读全文

不使用比较判断来比较两个数的大小

题目描述

请编写一个方法,找出两个数字中最大的那个。要求: 不得使用if-else等比较和判断运算符

给定两个int a和b,请返回较大的一个数。若两数相同则返回任意一个。

测试样例:
1,2
返回:2

阅读全文

将字符串或列表分割成固定长度

场景一

假设有一段任意长度的列表,需要把该列表进行分割,要求分割成固定长度为N的若干个小列表。

比如,L = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

需要将其分割为长度为3的小列表:[[0, 1, 2],[3, 4, 5],[6, 7, 8],[9]]

阅读全文

python中将list和str相互转换

字符串转数组

例子1

阅读全文