创建挑战杯代码库

`首先肯定是设置username 和 email
然后创建ssh公钥和私钥()
参考 https://help.github.com/articles/connecting-to-github-with-ssh/
在我的github上将公钥加进来
然后在我之前写好的challenge目录下
git init 初始化一下
git add . 提交到暂存区
git commit -m 'first commit' 提交到工作区
然后
git remote add origin [email protected]:CarryHJR/challenge2017.git
就将本地库与github上的库关联起来了
最后
git push -u origin master 将本地的工作区中的内容推送到我的github项目上

pip install --upgrade --ignore-installed tensorflow-gpu

你可能感兴趣的:(创建挑战杯代码库)