Forked from shivanandmn/Installing work-tools in Mac
Created
December 27, 2023 18:42
-
-
Save lvnilesh/3a888ad272ab3246192745ce0933e1e6 to your computer and use it in GitHub Desktop.
Installing Brew, ImageMagick, mongoldb, robo3t and latex_parse
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
To install Brew: | |
-/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
Install ImageMagick | |
-brew uninstall --force imagemagick | |
-brew install imagemagick@6 | |
-echo 'export PATH="/usr/local/opt/imagemagick@6/bin:$PATH"' >> ~/.bash_profile | |
-brew link imagemagick@6 --force | |
If you need to have imagemagick@6 first in your PATH, run: | |
-echo 'export PATH="/usr/local/opt/imagemagick@6/bin:$PATH"' >> ~/.zshrc | |
Install mongodb | |
-brew tap mongodb/brew | |
-brew install mongodb-community | |
////serveices///// | |
brew services start mongodb-community | |
brew services stop mongodb-community | |
For latex-parser below is required with simpy(latext) | |
-pip install antlr4-python3-runtime | |
###ROBO 3T | |
To enable access in Mac. | |
sudo xattr -r -d com.apple.quarantine /Applications/Robo\ 3T.app |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment