Last active
September 28, 2020 12:34
-
-
Save andfanilo/7c3e026c146c092451b8c0a05ee7c560 to your computer and use it in GitHub Desktop.
pip packages for analytics environment in Python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
conda create -n analytics python=3.7 | |
conda activate analytics | |
#conda install pytorch-cpu torchvision-cpu torchvision torchtext -c pytorch | |
# if pip-compile doesn't work you can just pip install requirements.in | |
pip install pip-tools | |
pip-compile requirements.in | |
pip install -r requirements.txt | |
# Jupyter lab extensions | |
jupyter labextension install @jupyterlab/toc --no-build | |
jupyter labextension install @pyviz/jupyterlab_pyviz --no-build | |
jupyter labextension install @jupyterlab/plotly-extension --no-build | |
jupyter labextension install bqplot --no-build | |
jupyter labextension install @lckr/jupyterlab_variableinspector --no-build | |
jupyter labextension install @krassowski/jupyterlab_go_to_definition --no-build | |
pip install nbresuse | |
jupyter labextension install jupyterlab-topbar-extension jupyterlab-system-monitor jupyterlab-topbar-text jupyterlab-logout jupyterlab-theme-toggle | |
jupyter lab build |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
######################################################################## | |
# Utilities | |
######################################################################## | |
beautifulsoup4 | |
black | |
csvkit | |
fastapi | |
intake | |
#kaggle | |
#line_profiler | |
orderedmultidict | |
orjson | |
path.py | |
pip-tools | |
pudb | |
python-dotenv | |
reorder-python-imports | |
requests | |
selenium | |
simplejson | |
snakeviz | |
sqlalchemy | |
tqdm | |
typer | |
ujson | |
wget | |
######################################################################## | |
# Analytics | |
######################################################################## | |
#catboost | |
#interpret | |
jupyter | |
jupyterlab | |
lightgbm | |
missingno | |
#mlflow | |
#mlxtend | |
numpy | |
pandas | |
pandas-profiling | |
pmdarima | |
pyarrow | |
#rgf_python | |
#scikit-image | |
scikit-learn | |
scipy | |
shap | |
statsmodels | |
#xgboost | |
#umap-learn | |
vega_datasets | |
visidata | |
xarray | |
xlrd | |
yellowbrick | |
######################################################################## | |
# Big Data | |
######################################################################## | |
#dask | |
#h2o | |
#pyspark | |
######################################################################## | |
# Visualization | |
######################################################################## | |
altair | |
altair_data_server | |
altair_saver | |
altair_viewer | |
bokeh | |
bqplot | |
#chartify | |
cmocean | |
colorcet | |
cufflinks | |
dash | |
datashader | |
folium | |
ipyvuetify | |
jupyter-dash | |
holoviews | |
hvplot | |
matplotlib | |
networkx | |
palettable | |
pandas-bokeh | |
panel | |
pdvega | |
plotly | |
plotnine | |
pydeck | |
pyecharts | |
pygal | |
seaborn | |
streamlit-nightly | |
toyplot | |
vaex | |
voila | |
voila-vuetify | |
######################################################################## | |
# Deep Learning | |
######################################################################## | |
#keras | |
#tensorflow |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment