Skip to content

tigertiper/code-snippets-python

 
 

Repository files navigation

code-snippets-python

为什么要收集这些代码

下次用起来方便。

环境配置

安装 pipenv

$ pip install pipenv
# or
$ brew install pipenv

配置(可选)

# 自动补全
$ eval "$(pipenv --completion)"

# macOS 可能要在 profile 里导出 local 变量
$ export LC_ALL=en_US.UTF-8
$ export LANG=en_US.UTF-8

创建和启动虚拟环境

$ git clone git@github.com:binderclip/code-snippets-python.git
$ cd code-snippets-python 
$ pipenv install
$ pipenv shell

之后更新虚拟环境

$ pipenv install xxx

About

日常 Python 代码收集

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.9%
  • HTML 0.1%