[free-tutorials@free-tutorials ~]$ curl -O https://raw.github.com/pypa/virtualenv/master/virtualenv.py
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 111k 100 111k 0 0 75459 0 0:00:01 0:00:01 --:--:-- 139k
[free-tutorials@free-tutorials ~]$ python virtualenv.py my_new_env
New python executable in my_new_env/bin/python
Installing setuptools............................done.
Installing pip.....................done.
[free-tutorials@free-tutorials ~]$ . my_new_env/bin/activate
(my_new_env)[free-tutorials@free-tutorials ~]$ pip --help
Usage: pip COMMAND [OPTIONS]
--version show program's version number and exit
-h, --help Show help
-v, --verbose Give more output
-q, --quiet Give less output
--log Log file where a complete (maximum verbosity) record will be kept
--proxy Specify a proxy in the form user:passwd@proxy.server:port. Note that the user:password@ is
optional
and required only if you are behind an
authenticated proxy. If you provide user@proxy.server:port then you will be prompted
for a password.
--timeout Set the socket timeout (default 15 seconds)
--exists-action <EXISTS_ACTION>
Default action when a path already exists. Use this option more than one time to
specify another
action if a certain option is not available.
Choices: (s)witch, (i)gnore, (w)ipe, (b)ackup
Commands available:
bundle: Create pybundles (archives containing multiple packages)
freeze: Output all currently installed packages (exact versions) to stdout
help: Show available commands
install: Install packages
search: Search PyPI
uninstall: Uninstall packages
unzip: Unzip individual packages
zip: Zip individual packages