If we want to start a new python3 project, What we should do first?
- start a git project online
- git clone your_git_project_url
- mkvirtualenv -p python3 project_name
- pip install your_project_need_package
- pip freeze > requirements.txt(use
pip install -r requirements.txt
to restore)