Skip to content

Installation

Install from PyPI

scholarpy is available on PyPI. To install scholarpy, run this command in your terminal:

1
    pip install scholarpy

Install from conda-forge

scholarpy is also available on conda-forge. If you have Anaconda or Miniconda installed on your computer, you can install scholarpy using the following command:

1
    conda install scholarpy -c conda-forge

Optionally, you can install some Jupyter notebook extensions, which can improve your productivity in the notebook environment. Some useful extensions include Table of Contents, Gist-it, Autopep8, Variable Inspector, etc. See this post for more information.

1
    conda install jupyter_contrib_nbextensions -c conda-forge

Install from GitHub

To install the development version from GitHub using Git, run the following command in your terminal:

1
    pip install git+https://github.com/giswqs/scholarpy

Upgrade scholarpy

If you have installed scholarpy before and want to upgrade to the latest version, you can run the following command in your terminal:

1
    pip install -U scholarpy

If you use conda, you can update scholarpy to the latest version by running the following command in your terminal:

1
    conda update -c conda-forge scholarpy

To install the development version from GitHub directly within Jupyter notebook without using Git, run the following code:

1
2
    import scholarpy
    scholarpy.update_package()

Last update: 2022-02-09