本文主要是介绍Ubuntu18.04安装微信(可用)(五十五),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Ubuntu18.04安装微信
1.安装依赖工具及环境
# sudo apt install wmctrl xdotool
# git clone https://gitee.com/wszqkzqk/deepin-wine-for-ubuntu.git
# cd deepin-wine-for-ubuntu/
# sudo ./install.sh2.安装微信
https://download.csdn.net/download/u010164190/16039439
# sudo dpkg -i deepin.com.wechat_2.6.8.65deepin0_i386-OK.deb搜索启动微信3.去掉黑框
# git clone https://github.com/yundantianchang/wmctrl.git
# cd wmctrl
# cp wmctrl.py tools/
# cd tools/
# python3 wechat-fix.py //去掉黑框# emacs /opt/deepinwine/apps/Deepin-WeChat/run.sh //末尾增加
python3 /opt/wmctrl/tools/wechat-fix.py4.卸载不需要的插件
# sudo apt purge fcitx-ui-qimpanel fcitx-module-autoeng-ng fcitx-module-punc-ng //终极解决方式
# sudo apt purge fcitx*
# sudo dpkg -i sogoupinyin_2.4.0.3469_amd64.deb
# sudo apt -f install
# sudo apt install fcitx-config-gtk5..搜狗输入法无法输入中文问题
//修改及添加如下
# emacs /opt/deepinwine/tools/run.sh
WINE_CMD="LC_ALL=zh_CN.UTF-8 deepin-wine"
export GTK_IM_MODULE="fcitx"
export QT_IM_MODULE="fcitx"
export XMODIFIERS="@im=fcitx"注意:安装搜狗输入法版本:sogoupinyin_2.4.0.3469_amd64.deb特别注意,避免掉坑!
必须使用搜狗输入法,Ubuntu18.04自带输入法无法输入中文!
这篇关于Ubuntu18.04安装微信(可用)(五十五)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!