Created
May 30, 2021 00:14
-
-
Save shivanandmn/d16250d4dbf007204ca169c5979c4b3c 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