Last active
April 24, 2019 02:32
-
-
Save zyxue/763bd0f532dc967056e706750023fefa to your computer and use it in GitHub Desktop.
install common packages in a newly created conda env
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 fgcreate -n venv ipython | |
source activate venv | |
pip install \ | |
pandas \ | |
scipy \ | |
jupyter \ | |
jupyterlab \ | |
matplotlib \ | |
sqlalchemy \ | |
tqdm \ | |
tables \ | |
psycopg2 \ | |
numba \ | |
xgboost \ | |
plotly \ | |
bokeh \ | |
mysqlclient \ | |
shapely \ | |
geopandas \ | |
jellyfish \ | |
xlrd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment