分类目录归档:开发相关

python常用的命令行操作


Python安装

useradd username -g usergroup
wget https://repo.continuum.io/archive/Anaconda3-5.1.0-Linux-x86_64.sh
https://repo.continuum.io/archive/index.html
./Anaconda3-5.3.0-Linux-x86_64.sh
# vi ~/.bashrc
source ~/.bashrc
# 包安装方法
pip install --upgrade pip
pip show Jinja2
pip list
pip install some.whl

Read more

常用HTML代码解释


常用HTML代码解释

一、文字

1.标题文字<h#>..........</h#> #=1~6;h1为最大字,h6为最小字
2.字体变化<font>..........</font>
【1】字体大小<font size=#>..........</font> #=1~7;数字愈大字也愈大
【2】指定字型<font face="字体名称">..........</font>
【3】文字颜色<font color=#rrggbb>..........</font

Read more