Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

Commit

Permalink
feat: add python
Browse files Browse the repository at this point in the history
  • Loading branch information
ekoz committed Sep 17, 2020
1 parent ae523ab commit f07957d
Show file tree
Hide file tree
Showing 92 changed files with 7,380 additions and 677 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,11 @@ source_parsers = {
source_suffix = ['.rst', '.md']
```

## requirements

```
pip install sphinx
pip install recommonmark
pip install sphinx-rtd-theme
```
Binary file modified docs/_build/doctrees/environment.pickle
Binary file not shown.
Binary file modified docs/_build/doctrees/index.doctree
Binary file not shown.
Binary file added docs/_build/doctrees/python.doctree
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/_build/html/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 30c3eeca4a7187358e08694dbf0f85cb
config: e2143dfe16489214e010f39475a255b0
tags: 645f666f9bcd5a90fca523b33c5a78b7
1 change: 1 addition & 0 deletions docs/_build/html/_sources/index.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@
git
linux
docker
python
license

36 changes: 36 additions & 0 deletions docs/_build/html/_sources/python.md.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Python

## Anaconda

[官网](https://www.anaconda.com/products/individual)

```
# 查看虚拟环境
conda env list

# 创建环境
conda create -n your_env_name python=X.X
conda create -n python36 python=3.6.8

# 安装必要的包
conda create -n python36 numpy matplotlib python=3.6.8
# 或者
conda install -n your_env_name [package]


# 切换到虚拟环境
conda activate python36

# 关闭虚拟环境
conda deactivate python36

# 移除虚拟环境
conda remove -n your_env_name(虚拟环境名称) --all

# 移除虚拟环境中的某个包
conda remove --name $your_env_name $package_name

# pip 查看 [package] 当前版本
pip show numpy
pip install numpy==1.16.0
```
1 change: 1 addition & 0 deletions docs/_build/html/_static/css/badge_only.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2,671 changes: 2,671 additions & 0 deletions docs/_build/html/_static/css/fonts/fontawesome-webfont.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 4 additions & 0 deletions docs/_build/html/_static/css/theme.css

Large diffs are not rendered by default.

Binary file added docs/_build/html/_static/fonts/FontAwesome.otf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2,671 changes: 2,671 additions & 0 deletions docs/_build/html/_static/fonts/fontawesome-webfont.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added docs/_build/html/_static/fonts/lato-bold.woff
Binary file not shown.
Binary file added docs/_build/html/_static/fonts/lato-bold.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added docs/_build/html/_static/fonts/lato-normal.woff
Binary file not shown.
Binary file added docs/_build/html/_static/fonts/lato-normal.woff2
Binary file not shown.
1 change: 1 addition & 0 deletions docs/_build/html/_static/js/badge_only.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions docs/_build/html/_static/js/html5shiv-printshiv.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions docs/_build/html/_static/js/html5shiv.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f07957d

Please sign in to comment.