# How to add the path?

**URL:** https://discourse.julialang.org/t/how-to-add-the-path/82097
**Category:** General Usage
**Created:** [June 1, 2022, 11:44pm UTC](https://discourse.julialang.org/t/how-to-add-the-path/82097 "2022-06-01T23:44:36Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Raymond](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/raymond/32/36557_2.png) [@Raymond](https://discourse.julialang.org/u/Raymond)
#### Post date: [June 1, 2022, 11:44pm UTC](https://discourse.julialang.org/t/how-to-add-the-path/82097/1 "2022-06-01T23:44:36Z")

</div>

```julia
jill will:
  1) install Julia 1.8.0-rc1 for mac-x86_64 into /Applications
  2) make symlinks in /Users/zhangdeliang/.local/bin
You may need to manually add /Users/zhangdeliang/.local/bin to PATH

```

How to manually add /Users/zhangdeliang/.local/bin to PATH?

---

<div class="post-metadata">

### Author: ![George9000](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/george9000/32/23619_2.png) [@George9000](https://discourse.julialang.org/u/George9000)
#### Post date: [June 2, 2022, 12:12am UTC](https://discourse.julialang.org/t/how-to-add-the-path/82097/2 "2022-06-02T00:12:34Z")

</div>

Open a terminal and

```bash
echo $SHELL

# if the output was /bin/zsh, check if you have a file in your home directory named ".zshrc"
# if that file doesn't exist, create it in your home directory with "touch .zshrc"
# then,
echo "export PATH=/Users/zhangdeliang/.local/bin:\$PATH" >> .zshrc
# exit terminal and start a new terminal and your path should be updated

# if your shell is /bin/bash, do the steps above for ".bashrc"

```
