DEV Community

Discussion on: The Complete Guide to Full Stack Solana Development with React, Anchor, Rust, and Phantom

Collapse
 
rwreynolds profile image
Rick Reynolds

Never mind. It appears to have been an ID10T issue.

Collapse
 
0_tw1tter profile image
Name

Just for future adventurers,

Was the problem that you hadn't changed directory into example1 or example2?

Thread Thread
 
koenrad profile image
Koenrad MacBride

I just ran into the same problem and found this post while trying to solve it.

My problem was that I had the npm anchor package installed globally (which I did before I realized that it doesn't work on the M1 mac currently). Uninstalling it fixed the issue. (of course you also need to build anchor for it to work properly on the M1)

npm uninstall -g @project-serum/anchor-cli
Enter fullscreen mode Exit fullscreen mode