Git tools is very important for Github, so introduce the command here first.
git config --global user.name "Your name"
git config --global user.email "Your email"
ssh-keygen -t rsa -C "Your email"
eval
ssh-agent -s
ssh-add /c/users/admin/.ssh/id_rsa_name
&&
eval $(ssh-agent -s)
ssh-add /c/users/admin/.ssh/id_rsa_name
git clone https://github.com/Your name/reponsitions.git
git add .
git commit -m "commentary"
git pushDownload it from python.org for Windows and install, it's easy. In Linux so.
python -m pip install --upgrade pip
python -m pip install 'your package'Please create and modify the Source file pip.ini.Increase the download speed.
mkdir c:\users\username\pip
touch c:\users\username\pip\pip.ini
echo "
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn" >> c:\users\username\pip\pip.iniMaking your Python file like yourfilename.py in IDE you like. Then implement it. IDE:
Sublime,Notepad++,Markdownpad2,Geany,Vim,Emacs,Jetbrain,everyone of them can.
Implement statement:
python yourfilename.pyFor example: make a name test.py and modify the content in it.
print("Hello,Python!!!")save and exit the test.py file. in the command line:
python test.pythe output is:
Hello,Python!!! Python's "prettytable" repository
`pip install prettytable`
`$ from prettytable import PrettyTable`
`myTable=PrettyTable(["","",""...])`
`myTable.add_row(["","",""...])`
`print(myTable)`