Created
May 10, 2020 21:22
-
-
Save wesleyit/4f5a45ddb9a8a9dc7b5dd7aa7c1258ed to your computer and use it in GitHub Desktop.
This will install some very useful python packages on a Ubuntu Linux
This file contains 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
sudo apt update -y | |
clear | |
sudo apt install -y \ | |
libmysqlclient-dev \ | |
libmysql++-dev \ | |
libmysqlcppconn-dev \ | |
postgresql-server-dev-all \ | |
libpq-dev \ | |
unixodbc-dev \ | |
libsqliteodbc \ | |
libsqlite3-dev | |
pip install --pre --upgrade -r requirements.txt |
This file contains 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
# update pip | |
pip | |
# web devel | |
docutils | |
flask | |
flask_bootstrap4 | |
psycopg2 | |
pyodbc | |
requests | |
sqlalchemy | |
# development | |
flake8 | |
ipython | |
isort | |
pylama | |
pylint | |
pytest | |
tox | |
# notebooks | |
jupyter | |
jupyter-contrib-nbextensions | |
jupyter-tensorboard | |
# everybody loves graphs | |
bokeh | |
graphviz | |
h5py | |
imageio | |
ipywidgets | |
matplotlib | |
pillow | |
plotly | |
pygments | |
seaborn | |
# some smart things | |
bash_kernel | |
fastparquet | |
keras | |
mxnet | |
numpy | |
pandas | |
pickleshare | |
pyarrow | |
scikit-learn | |
scipy | |
statsmodels | |
tensorflow | |
tflearn | |
# lets automate things up | |
ansible | |
awscli | |
boto3 | |
sagemaker |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment