Skip to content

Instantly share code, notes, and snippets.

@moshez
Created June 27, 2015 03:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moshez/660840e2f91cf4dba0b6 to your computer and use it in GitHub Desktop.
Save moshez/660840e2f91cf4dba0b6 to your computer and use it in GitHub Desktop.
Log for warner
moshez@mcgyver:~/src/games$ virtualenv forwarner
Running virtualenv with interpreter /usr/bin/python2
New python executable in forwarner/bin/python2
Also creating executable in forwarner/bin/python
Installing setuptools, pip...done.
moshez@mcgyver:~/src/games$ ./forwarner/bin/pip install tox
Downloading/unpacking tox
Downloading tox-2.1.1-py2.py3-none-any.whl
Downloading/unpacking pluggy>=0.3.0,<0.4.0 (from tox)
Downloading pluggy-0.3.0-py2.py3-none-any.whl
Downloading/unpacking virtualenv>=1.11.2 (from tox)
Downloading virtualenv-13.0.3-py2.py3-none-any.whl (1.7MB): 1.7MB downloaded
Downloading/unpacking py>=1.4.17 (from tox)
Downloading py-1.4.30-py2.py3-none-any.whl (81kB): 81kB downloaded
Installing collected packages: tox, pluggy, virtualenv, py
Successfully installed tox pluggy virtualenv py
Cleaning up...
moshez@mcgyver:~/src/games$ cat forwarner/bin/tox
tox tox-quickstart
moshez@mcgyver:~/src/games$ cat forwarner/bin/tox
#!/home/moshez/src/games/forwarner/bin/python2
# -*- coding: utf-8 -*-
import re
import sys
from tox import cmdline
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(cmdline())
moshez@mcgyver:~/src/games$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment