Open encryptblockr opened 2 years ago
Importing third-party packages is only supported on Linux and Mac OS X - on them, you just need to execute
import "some/package/path"
as described in gomacro README.md (the interpreter used internally by gophernotes).
There is a way to import them also on Windows, but it's more complicated and it involves recompiling gophernotes (you need to adapt the procedure described at https://github.com/cosmos72/gomacro#other-systems).
If you are using Docker: I am not expert with Docker and cannot help with it - maybe others can (@sbinet ?)
@cosmos72 @sbinet
Standard packages work fine but does not with third party packages
I have this running inside docker using the latest official docker image gopherdata/gophernotes
Any workaround? am sure there are others using docker that work with codes that require third party packages Really sad not to be to download packages as it makes gophernotes almost useless now if one cant download packages
@cosmos72 @sbinet
Seems gophernotes on docker can NOT make any external call period Any way to fix this or get around this? Without being able to make any external calls, this is almost useless It is like same thing as golang plyabook now, not being able to make any external calls
what do you mean? ie: what did you try? and what was the outcome?
The error in the first post above suggests that gophernotes inside Docker is compiled without Go modules support.
If I understand correctly, @sbinet has updated Docker installation procedure to use a recent version of Go toolchain, which should also solve this issue.
Can you try again (following Docker installation procedure, not downloading the pre-built Docker image which quite likely still uses the old Go toolchain) ?
In case you are not using Docker, or if you want to try the plain Windows version of gophernotes, the procedure to import third-party packages from gophernotes on Windows is explained in issue 243
Any update on this one. Banging my head against the same issue... :)
Even though... When building my own image with the Dockerfile in the repo it works. The DockerHub image is 4 years old.
I am trying to use a third party package within my gophernote and got the following error
now i
docker exec -it gophernotes sh
and then ranhow do we install third party packages to use in gophernote?
why is there no doc in README about how to do this?!?