CentOS 7.2 开发环境 配置
Posted SpikeKing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 7.2 开发环境 配置相关的知识,希望对你有一定的参考价值。
在基础的CentOS系统中,添加各种环境配置,易于开发。
查看CentOS的版本:
cat /etc/redhat-release
添加ll操作:
vim ~/.bash_profile
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
export LANG="zh_CN.UTF-8"
source ~/.bash_profile
配置pip源
mkdir ~/.pip
vim ~/.pip/pip.conf
[global]
trusted-host = mirrors.aliyun.com
index-url = https://mirrors.aliyun.com/pypi/simple
PyTorch环境
pip3 install --user torch==1.7.0 torchvision==0.8.1 seaborn==0.11.0 tqdm==4.56.0
安装unar,参考How to Extract rar Files in CentOS Linux:
yum install epel-release
yum install unar
安装库
pip3 install --user sklearn
存储Git密码,参考
git config credential.helper store
vim ~/.gitconfig
[credential]
helper = store
以上是关于CentOS 7.2 开发环境 配置的主要内容,如果未能解决你的问题,请参考以下文章
CentOS-7.2安装SQuirreL SQL Client连接Hive