Skip to content

DiffenYu/MLInAction

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

MLInAction

Pre-Install

  1. How to install the latest python on CentOS Refer to https://www.python.org/downloads/
wget https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tar.xz
tar Jxvf Python-3.6.1.tar.xz
cd Python-3.6.1/
./configure --prefix=/usr/local/python3
sudo make && sudo make install

sudo rm /usr/bin/python
sudo ln -s /usr/local/python3/bin/python3.6 /usr/bin/python
  1. Install numpy and matplotlib on CentOS
sudo yum install numpy -y
sudo yum install python-matplotlib -y

tutorial http://cs231n.github.io/python-numpy-tutorial/

  1. How to enable auto-complete in python command-line

  2. python vim related plugin http://vimawesome.com/plugin/python-mode https://github.com/python-mode/python-mode

TODO

Reference codes: https://github.com/pbharrin/machinelearninginaction

What does if name main do https://stackoverflow.com/questions/419163/what-does-if-name-main-do

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages