Last active
February 24, 2021 18:15
-
-
Save nemonik/d159c80c0c7b41df718e2ca6827381ed to your computer and use it in GitHub Desktop.
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
## install chromedriver while on OS X living in a fish | |
brew install chromedriver | |
## get around apple's prophylactic, so the executable can be executed | |
bash -c 'xattr -r -d com.apple.quarantine $(which chromedriver)' | |
A CA file has been bootstrapped using certificates from the system | |
keychain. To add additional certificates, place .pem files in | |
/usr/local/etc/[email protected]/certs | |
and run | |
/usr/local/opt/[email protected]/bin/c_rehash | |
## brew, openssl and fish | |
[email protected] is keg-only, which means it was not symlinked into /usr/local, | |
because macOS provides LibreSSL. | |
If you need to have [email protected] first in your PATH, run: | |
echo 'set -g fish_user_paths "/usr/local/opt/[email protected]/bin" $fish_user_paths' >> ~/.config/fish/config.fish | |
For compilers to find [email protected] you may need to set: | |
set -gx LDFLAGS "-L/usr/local/opt/[email protected]/lib" | |
set -gx CPPFLAGS "-I/usr/local/opt/[email protected]/include" | |
For pkg-config to find [email protected] you may need to set: | |
set -gx PKG_CONFIG_PATH "/usr/local/opt/[email protected]/lib/pkgconfig" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment