Skip to content

Instantly share code, notes, and snippets.

@nemonik
Last active February 24, 2021 18:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nemonik/d159c80c0c7b41df718e2ca6827381ed to your computer and use it in GitHub Desktop.
Save nemonik/d159c80c0c7b41df718e2ca6827381ed to your computer and use it in GitHub Desktop.
## 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/openssl@1.1/certs
and run
/usr/local/opt/openssl@1.1/bin/c_rehash
## brew, openssl and fish
openssl@1.1 is keg-only, which means it was not symlinked into /usr/local,
because macOS provides LibreSSL.
If you need to have openssl@1.1 first in your PATH, run:
echo 'set -g fish_user_paths "/usr/local/opt/openssl@1.1/bin" $fish_user_paths' >> ~/.config/fish/config.fish
For compilers to find openssl@1.1 you may need to set:
set -gx LDFLAGS "-L/usr/local/opt/openssl@1.1/lib"
set -gx CPPFLAGS "-I/usr/local/opt/openssl@1.1/include"
For pkg-config to find openssl@1.1 you may need to set:
set -gx PKG_CONFIG_PATH "/usr/local/opt/openssl@1.1/lib/pkgconfig"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment