File size: 849 Bytes
cebfd46 685331f cebfd46 8464dc1 cebfd46 685331f cebfd46 685331f cebfd46 685331f cebfd46 685331f cebfd46 685331f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
.. _install:
Installation of pytube
======================
This guide assumes you already have python and pip installed.
To install pytube, run the following command in your terminal::
$ pip install pytube
Get the Source Code
-------------------
pytube is actively developed on GitHub, where the source is `available <https://github.com/pytube/pytube>`_.
You can either clone the public repository::
$ git clone git://github.com/pytube/pytube.git
Or, download the `tarball <https://github.com/pytube/pytube/tarball/master>`_::
$ curl -OL https://github.com/pytube/pytube/tarball/master
# optionally, zipball is also available (for Windows users).
Once you have a copy of the source, you can embed it in your Python package, or install it into your site-packages by running::
$ cd pytube
$ python -m pip install .
|