Python

Headline

# Install virtualenv
pip install virtualenv
 
# Use virtualenv
cd my_project_folder
 
virtualenv venv
#or
virtualenv -p /usr/bin/python2.7 venv
#or
virtualenv -p /usr/bin/python3 venv
 
source venv/bin/activate
 
# Save requirements
pip freeze > requirements.txt
 
# Install requirements
pip install -r requirements.txt

http://docs.python-guide.org/en/latest/dev/virtualenvs/

http://docs.python-guide.org/en/latest/scenarios/admin/

http://stackoverflow.com/questions/3189138/is-it-possible-to-write-a-firewall-in-python

http://pylibpcap.sourceforge.net/

https://twistedmatrix.com/documents/15.0.0/names/howto/custom-server.html

http://libcloud.apache.org

kb/python.txt · Last modified: 2022/01/03 16:03 by 127.0.0.1
Back to top
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0