AllSetup
  • Introduction
  • Docker
  • Common commands
    • Various S3 utilities
    • Mac stuff
  • Mac stuff
  • Dockerfile examples
  • Docker GPU
  • TensorFlow
  • tensorFlow on iOS
  • Jupyter
  • iOS
  • SSD work
  • SSD using Inception
  • Object Detection
  • Docker GPU
  • TitBits
  • MySQL
  • FAIR Multipathnet
  • Git and GitFlow
  • Java Scala Mongo Installation
  • Devops
  • scratchpad
  • GCP Production
  • GStreamer
  • bash
  • Scala
  • Unix commands
  • Publish-Subscribe
  • Sensor-project
  • Flutter-project
Powered by GitBook
On this page

Was this helpful?

  1. Common commands

Mac stuff

Say when you install awscli using pip

> sudo -H pip instal --upgrade --user awscli

What happens is, pip installs the binary in
/opt/local/Library/Frameworks/Python.framework/Versions/2.7/bin/aws
and that path is not there in $PATH.

But, since /usr/local/bin is there in the PATH, we do a soft link
> cd /usr/loca/bin
> ln -s /opt/local/Library/Frameworks/Python.framework/Versions/2.7/bin/aws aws
PreviousVarious S3 utilitiesNextMac stuff

Last updated 5 years ago

Was this helpful?