1

I am trying to add Racket's bin to my list of environment/path variables.

Here is the location of Racket's bin folder:

/Applications/Racket/bin

Here is what I have added to my .bash_profile file:

export PATH=$PATH:/Applications/Racket/bin

Here is the Path output from set:

PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/Applications/Racket/bin

However, when I run ./racket, I still get:

-bash: ./racket: No such file or directory

I am able to run ./racket from Racket's bin directory (meaning that it probably isn't a 32- v 64-bit issue).

0

1 Answer 1

4

However, when I run ./racket, I still get a "-bash: ./racket: No such file or directory"

Run it like this instead:

racket

When you run ./racket it means run an executable racket from your current directory.

Sign up to request clarification or add additional context in comments.

1 Comment

If it works for you then pls accept the answer (by clicking right click) whenever you can :)

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.