Replies: 2 comments
-
|
The first example has a bug on line 3: We don't have open bugs related to the Conda package. What's your environment like? |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Confirming 5675sp's issue with Conda installation and Conda package page. MacOS 11.4 on Mac mini (M1, 2020)
Produces the following output: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In the wave documentation, the following is instructed if you are using Conda as your package manager:
conda install -c h2oai h2o_waveThe above command raises the following problem:
unable to installI thought maybe the problem was because, according to the conda website the command needs to have "-" instead of a "_":
Like this:
conda install -c h2oai h2o-waveThat didn't change anything and generated the following issue:
package is not compatibleInstead of using the command line above as instructed in the documentation, I decided to do the following:
pip install h2o_waveAfter a successful install, I followed to copy the code example on the coda website. This example:
The above code generated the following bug:
Wit the above in mind, I replaced the example with something like this:
And the above worked.
Beta Was this translation helpful? Give feedback.
All reactions