VirEnv for Py3.6 + Git ———08.26.2017

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 [email protected]:JantonZeng/eCAL.git

cd ~/.ssh

ssh-keygen

cat ~/.ssh/id_rsa.pub

ssh -T [email protected]


- How to solve SSH key problem

VirEnv for Py3.6 + Git ———08.26.2017_第1张图片

- How to add existing project to git


VirEnv for Py3.6 + Git ———08.26.2017_第2张图片


- Basic git commands

- Some more git commands for reset and delete 

VirEnv for Py3.6 + Git ———08.26.2017_第3张图片

- Delete local git

rm -rf .git

- Check size

du -hs

#h for human readable

#s for summary

你可能感兴趣的:(VirEnv for Py3.6 + Git ———08.26.2017)