pytube / docs /user /install.rst
nficano's picture
updated docs
cebfd46
raw
history blame
847 Bytes
.. _install:
Installation of pytube
======================
This part of the documentation covers the installation of pytube.
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/nficano/pytube>`_.
You can either clone the public repository::
$ git clone git://github.com/nficano/pytube.git
Or, download the `tarball <https://github.com/nficano/pytube/tarball/master>`_::
$ curl -OL https://github.com/nficano/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
$ pip install .