pycharm 配置使用

1. 如何添加Package

File-> Settings -> Project :XXXX -> Project Interpreter

点右边的"+"号,输入Package的名字,[install Package]

2. 如何提交代码到GitHub

先到https://git-scm.com/download/win 下载Git 客户端.
在Git命令行执行这2个命令
git config --global user.email "xxx@163.com"
git config --global user.name "terry" 然后在 File-> Settings->Version Control -> Git 里的Path to Git Executable ,指定git.exe的路径,比如我的D:downloadsPortableGitingit.exe VCS-> Import into Version Control -> Share Project on GitHub 再在VCS-> Git -> Commit Files 再在VCS-> Git -> Push
原文地址:https://www.cnblogs.com/zitjubiz/p/pycharm_usage.html