You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ah, I needed to update the vyper executable in the settings.json. I think it would be good for it to showhow do like which vyper and have that be the path? I'm not sure how it's picking up the vyper executable right now.
I was able to fix this by adding a .vscode/settings.json like so:
The extension simply calls vyper -f bytecode,..., so the problematic is rather which virtual env does VSCode uses for running extensions.
I haven't tried with venv but with pyenv, if there is a .python-version in your workspace specifying some virtual env, VSCode will use it for running extensions. Hence if you have installed vyper and snekmate in that virtual env, the extension will work fine without having to modify vyper.command since:
my_contract.vy
vyper
command(it will compile) but the extension will not find

snekmate
The text was updated successfully, but these errors were encountered: