美文网首页
VirEnv for Py3.6 + Git ———08.26

VirEnv for Py3.6 + Git ———08.26

作者: 腾腾4ever | 来源:发表于2017-08-27 06:55 被阅读0次

yVirtual environment, git

How to create virtual environment for python 3.6

conda create -n Janton-Py3 python=3.6    #Janton-Py3 is user specified name

source activate Janton-3

Now goes into the virtual environment and create ipython notebook:

pip install jupyter

jupyter notebook

source deactivate Janont-Py3

-------------------------------------------------------------------------------------------

Git

git remote add origin git@github.com:JantonZeng/eCAL.git

cd ~/.ssh

ssh-keygen

cat ~/.ssh/id_rsa.pub

ssh -T git@github.com

- How to solve SSH key problem

- How to add existing project to git

- Basic git commands

- Some more git commands for reset and delete 

- Delete local git

rm -rf .git

- Check size

du -hs

#h for human readable

#s for summary

相关文章

网友评论

      本文标题:VirEnv for Py3.6 + Git ———08.26

      本文链接:https://www.haomeiwen.com/subject/wycbdxtx.html