极点五笔for Ubuntu安装

最喜欢的五笔输入法极点五笔终于出Linux版本了

下载地址:http://210.22.22.150:1278/freewb_0.1.3_amd64.deb

安装Fcitx输入法apt install fcitx-bin

首先说明一下极点五笔官方使用的是Fcitx输入法系统

极点五笔for Ubuntu安装_第1张图片

可以选择将Ubuntu系统自带的IBUS输入法删除

apt remove ibus 或者 apt purge ibus

安装极点五笔dpkg -i freewb.deb

配置操作:注意fcitx配置默认键盘-英语然后才是极点五笔,否则配置后无法输入字母

极点五笔for Ubuntu安装_第2张图片

如果没有中文语言支持还得在语言支持中安装中文

极点五笔for Ubuntu安装_第3张图片

输入法配置

极点五笔for Ubuntu安装_第4张图片

在Window 操作Linux 最好的终端工具putty及psftp:

C:\Users\Downloads>psftp -P 22
psftp: no hostname specified; use "open host.name" to connect
psftp> open 46.29.*.*
login as: root
[email protected].*.*'s password:
Remote working directory is /root
psftp> put -r D:/*.py
local:D:/*.py => remote:/root/*.py
psftp> exit

传递D盘下*.py文件到linux主用户目录

在Window下使用python多线程出现以下问题

RuntimeError: 
        An attempt has been made to start a new process before the
        current process has finished its bootstrapping phase.

        This probably means that you are not using fork to start your
        child processes and you have forgotten to use the proper idiom
        in the main module:

            if __name__ == '__main__':
                freeze_support()
                ...

        The "freeze_support()" line can be omitted if the program
        is not going to be frozen to produce an executable.

解决办法:  

from multiprocessing imoprt Pool
if __name__ == '__main__':
    with Pool(processes=4) as pool:
        df_list = pool.map(backtest, sorted(roi_list))

你可能感兴趣的:(极点五笔for Ubuntu安装)