Last active
October 19, 2016 09:33
-
-
Save matthlavacka/6bbf6bff72d635cbd5425024e88eb672 to your computer and use it in GitHub Desktop.
Script to fix dyld error
This file contains hidden or 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
# It looks like the distributed versions of Node and npm live here: | |
~/.meteor/packages/meteor-tool/1.3.5.1/mt-os.osx.x86_64/dev_bundle/bin/ | |
# To make sure that the executables there are found before any systemwide installed executables, | |
# you can add them to your $PATH variable like this: | |
export PATH=~/.meteor/packages/meteor-tool/1.3.5.1/mt-os.osx.x86_64/dev_bundle/bin/:$PATH | |
# After running the line above, try and see what these say: | |
which node | |
which npm | |
# If those point to the Meteor-distributed versions, next is to try and install `zmq`: | |
npm i iconv | |
# Fingers crossed! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment