How do I correct this error so that the terminal will accept my input?

949 Views Asked by At
$ ln -s/usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/

ln: illegal option -- /
usage: ln [-Ffhinsv] source_file [link_name]
       ln [-Ffhinsv] source_file ... linkname_dir
       link source_file link_name

I am currently trying to install the compiler for visual studio code, but the terminal won't allow me to input without an error. How do I correct this issue?

1

There are 1 best solutions below

0
Romeo Ninov On

You miss one space, the command should be like:

$ ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/