Magic Analytics
  • Home
  • Python
    • Pandas
    • Matplotlib
    • Interactive Visualization
    • Folium
  • Spark
    • DataFrame
  • Machine Learning
    • Classification >
      • Logistic Regression
    • Dimension Reduction
    • Model Explaination
  • Blog
  • About

Package management

It is always a good to have every needed software set up ahead, to have a frustration-free analytical environment.
Under Mac + Python environment, I found the following three app very easy to use.

Homebrew

Package management system for Mac OSX. This is for all packages (including non-Python)

Common command:

brew info fswatch
brew install fswatch
brew uninstall fswatch

fswatch is a software package.



Anaconda

Open source distribution for Python (and R) to simplify package management and deployment. Conda is its management system.

Common command:

conda list
conda install numpy
conda remove --name numpy
conda install scipy==0.15.0
conda update scipy


Pip

Package management system for Python software packages. If using Anaconda, pip is a nice complimentary to Conda.

Common command:

pip list
pip install numpy
pip uninstall numpy
pip install scipy==0.15.0
pip install scipy --upgrade

File management

fswatch

XXX


rsync

XX


Powered by Create your own unique website with customizable templates.
  • Home
  • Python
    • Pandas
    • Matplotlib
    • Interactive Visualization
    • Folium
  • Spark
    • DataFrame
  • Machine Learning
    • Classification >
      • Logistic Regression
    • Dimension Reduction
    • Model Explaination
  • Blog
  • About