-
Notifications
You must be signed in to change notification settings - Fork 2
Python
William Zhang edited this page Jan 16, 2019
·
1 revision
Use pip etc.
- Search python modules at https://pypi.org/
- Download the source packages xxx.tar.gz
- Copy to destination machine
- Untar it and mv to /usr/lib/python2.7/site-packages
- cd site-packages/xxx
- sudo python setup.py install
If found dependencies and hang on download, install it by hand recursively :-(
requests: certifi urllib3 idna chardet pycrypto: ?
- python 2.x
/usr/lib/python2.7/SimpleHTTPServer.py
- python 3.x
renamed to http.server
$ python -m SimpleHTTPServer
Created by Wenliang Zhang.