Last active
August 29, 2015 14:18
-
-
Save lazybios/54b5e6a18586830fab09 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
python很好用,尤其是用过easy_install的朋友更是觉得它的便捷, | |
卸载命令也很简单 easy_install -m package-name | |
但是面对源码安装的怎么办呢? | |
setup.py 帮助你纪录安装细节方便你卸载 | |
python setup.py install --record log | |
这时所有的安装细节都写到 log 里了 | |
想要卸载的时候 | |
cat log | xagrs rm -rf | |
就可以干净卸载了 | |
python server.py -p 3888 -k 111111 -m aes-256-cfb --user nobody -d start | |
import socket | |
u = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) | |
u.sendto('mangepassword:8999:password_key:1',('192.168.1.1',23333)) | |
git clone -b <branch> <remote_repo> 例如: git clone -b 指定的分支名字 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment