苹果Mac OSX系统下(Linux通用)使用Cookiecutter创建Python包项目

安装:

(env)$ pip install cookiecutter

创建Python包项目:

方法一:
$ git clone https://github.com/audreyr/cookiecutter-pypackage.git
(env)$ cookiecutter cookiecutter-pypackage/
方法二:
(env)$ cookiecutter https://github.com/audreyr/cookiecutter-pypackage.git
方法三:
(env)$ cookiecutter cookiecutter-pypackage.zip

官网连接:

  • 请点击Cookiecutter链接查看

你可能感兴趣的:(python,Mac,OS,ubuntu)