Last active
August 25, 2022 21:36
-
-
Save Mahedi-61/e8a0e6fc06e44ea45aa9dc86766bd0bf to your computer and use it in GitHub Desktop.
setting python3 environment on linux machine for machine learning project
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
#!/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 |
@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
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"