application-research / estuary

A custom IPFS/Filecoin node that makes it easy to pin IPFS content and make Filecoin deals.
https://docs.estuary.tech
Other
240 stars 66 forks source link

`make clean all` Error: Cannot load embed: malformed module path "embed": missing dot in first path element make: *** [Makefile:67: estuary] Error 1 #91

Closed urcades closed 2 years ago

urcades commented 2 years ago

I receive the error indicated in this issue's title when I first attempt to make estuary - - I'm running WSL on windows, getting estuary set up in an ubuntu VM.

sheriflouis-FF commented 2 years ago

We haven’t tested with WSL so it is unsupported. Run it on a standard ubuntu release.

On Mon, Jan 10, 2022 at 20:03 édouard @.***> wrote:

I receive the error indicated in this issue's title when I first attempt to make estuary - - I'm running WSL on windows, getting estuary set up in an ubuntu VM.

— Reply to this email directly, view it on GitHub https://github.com/application-research/estuary/issues/91, or unsubscribe https://github.com/notifications/unsubscribe-auth/AVVJIDLNNGYBRPBOGNL7TJLUVOT2LANCNFSM5LVI4EBQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

You are receiving this because you are subscribed to this thread.Message ID: @.***>

--

[image: Logo]

Sherif A. Louis

Solutions Architect

Filecoin Foundation & Filecoin Foundation for the Decentralized Web

✆: +1 (408) 391-0222

Fil.org https://fil.org/ // FFDWeb.org http://ffdweb.org/ // LinkedIn https://www.linkedin.com/in/sherif-a-louis/ // Book A Meeting https://calendly.com/sheriflouis

urcades commented 2 years ago

Thanks for the quick reply!

johnnymatthews commented 2 years ago

Just out of interest, @urcades what version of WSL are you running: 1 or 2?

johnnymatthews commented 2 years ago

I just tried installing Estuary on WSL2 and I managed to get the estuary binary built. Here's the steps I followed:

sudo apt update -y && sudo apt upgrade -y
wget https://go.dev/dl/go1.17.6.linux-amd64.tar.gz
echo "export PATH=$PATH:/usr/local/go/bin" >> ~/.bashrc
source ~/.bashrc
sudo tar -C /usr/local -xvzf go1.17.6.linux-amd64.tar.gz
sudo apt install jq pgk-config libhwloc-dev nvidia-opencl-dev -y

If you're running zsh or fsh, change bashrc to zshrc or fshrc respectively.

Give that a go and let me know if it works. Again, like @sheriflouis-FF said, Windows isn't officially supported. But it's always fun to try running stuff on WSL 😄

marshall commented 2 years ago

thanks @johnnymatthews, hopefully that helps future users!