Skip to content
This repository has been archived by the owner on Jul 4, 2022. It is now read-only.

Added a solution for another installation case #36

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,13 @@ This is how to create the contract bytecode to output _Hello, World!_ in Huff.
yarn global add huffc
```

**Note:** You may need to add yarn to your system's path to access globally installed packages. See [the yarn docs on global](https://classic.yarnpkg.com/en/docs/cli/global) for more details.
**Note:** You may need to add yarn to your system's path to access globally installed packages. See [the yarn docs on global](https://classic.yarnpkg.com/en/docs/cli/global) for more details.

Also try with `sudo` as there may still be an issue with Yarn incorrectly using the Node.js installation directory as the executable directory, which is not writable by normal users:

```shell
sudo yarn global add huffc
```

## Hello World

Expand Down