comery.github.io - Carpe's Garden

Description: 学习总结 思考感悟 知识管理

hexo theme redefine (26)

Example domain paragraphs

non-root user install python3 for linux Posted on 2022-04-13 | Comments: 直接用prefix指定自己的安装目录 1 2 3 4 5 6 7 # 非root 用户可以直接用以下命令安装 wget https://www.python.org/ftp/python/3.10.2/Python-3.10.2.tar.xz tar -Jxvf Python-3.10.2.tar.xz cd Python-3.10.2 ./configure --prefix=/home/yourname/python make make install 按照上面的方法安装之后可能有个问题是,用pip安装模块的时候,不能使用ssl,这可能和你没有openssl有关,所以需要在安装python的时候,添加openssl的依赖关系.

1 WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available. 1 2 3 4 5 6 7 ./configure --prefix=/home/yourname/python --with-openssl=/home/yourname/openssl_env make make install # 添加环境变量 export LIBRARY_PATH="/home/yourname/openssl_env/lib:$LIBRARY_PATH" export LD_LIBRARY_PATH="/home/yourname/openssl_env/lib:$LD_LIBRARY_PATH" Visualized comparative genomic methods Posted on 2021-06-02 | In 生物信息 | Comments: 比较基因组学工具,用来可视化多基因组(跨物种/不同个体)比对信息,或者是基因的共线性信息。

Reading materials

Links to comery.github.io (1)