Skip to content

Instantly share code, notes, and snippets.

@Mahedi-61
Last active August 25, 2022 21:36
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save Mahedi-61/e8a0e6fc06e44ea45aa9dc86766bd0bf to your computer and use it in GitHub Desktop.
Save Mahedi-61/e8a0e6fc06e44ea45aa9dc86766bd0bf to your computer and use it in GitHub Desktop.
setting python3 environment on linux machine for machine learning project
#!/bin/bash
# Instructions for installing necessary packages for running machine learning projects in Ubuntu machine
# first update and upgrade your system
sudo apt-get update
sudo apt-get install build-essential cmake g++ gfortran git pkg-config python-dev python3-tk software-properties-common wget
# install pip3 for working on python 3
sudo apt-get install python3-pip
pip3 install --upgrade pip
# install necessary packages for ML
pip3 install numpy pandas matplotlib sklearn scipy sympy nose h5py scikit-image
pip3 install mlxtend xgboost seaborn
pip3 install astunparse ninja pyyaml mkl mkl-include setuptools cmake cffi typing_extensions future six requests dataclasses
#install all bangla fonts
pip3 install --upgrade lbfi
lbfi --install yes
@rdnasim
Copy link

rdnasim commented Jul 9, 2019

> when i run this command, then show this errors. How can i find the errors solution?

image

@ibrahim-kardi
Copy link

please update code!
use "sudo python3.6 -m pip install numpy pandas matplotlib sklearn scipy sympy nose h5py scikit-image "
instead of "sudo pip3 install numpy pandas matplotlib sklearn scipy sympy nose h5py scikit-image"

@Mahedi-61
Copy link
Author

@IKardi420 I think you need an oscar to drink.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment