# lpyprj **Repository Path**: Mr_LYC/lpyprj ## Basic Information - **Project Name**: lpyprj - **Description**: Cookiecutter template for a Python package. See https://github.com/audreyr/cookiecutter. - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2014-09-21 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # lpyprj The project template created by LYC ## Quick start ### 1. clone the project. From github: `$ git clone https://github.com/MrLYC/lpyprj.git` Or from git@osc: `$ git clone https://git.oschina.net/Mr_LYC/lpyprj.git` ### 2. install requirements. Change directory to project: `$ cd lpyprj` Install pip to install requirements, if you didn't installed it yet: `$ sudo make setuptools` Install requirements with sudo: `$ sudo make requirements` ### 3. create your new project. Use cookiecutter to create your new project: `$ cookiecutter $path_of_lpyprj` Replace the var $path_of_lpyprj to the real path which the project lpyprj is. And then, input the infomations according to the hints to finish this step. ### 4. initalize your project. First, change the directory to your project. Then, initalize git: `$ git init` Make virtual environment as your developing environment: `$ make dev-init` ### 5. switch to the virtualenv of this project and start to develop Switch your Python environment and anchor here: `$ source .dev/toggle` If your want to switch your environment back, call it again.