forked from langongjin/literature_search
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyblio_notes.txt
28 lines (22 loc) · 878 Bytes
/
pyblio_notes.txt
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
# Install Anaconda or similar python package
# Need at least Python 3
# Maybe create new environment
conda create --name pyblio python=3.7
# Packages for pyblio and scopus
conda install -c anaconda pip
pip install jupyterlab
pip install pybliometrics
pip install --upgrade gensim
conda install -c conda-forge wordcloud
jupyter nbextension enable --py widgetsnbextension
# Create Scopus account using your campus account (e.g. MIT, Cornell, etc)
# Obtain your API Key(s) from http://dev.elsevier.com/myapikey.html
# Login to your campus VPN before running anything else
# since API key is tied to campus IP address(es)
# Pyblio environment in Jupyter
conda activate pyblio
conda install -c anaconda ipykernel
python -m ipykernel install --user --name=pyblio
jupyter lab
# Open the pybliometrics notebook and
# switch to pyblio environment using the dropdown on top-right