Andrew L. Moore

Results 9 comments of Andrew L. Moore

> At this time, there is no such feature and I agree it's a deficiency. I am planning to address this (configurable load balancing, rate limiting, etc), but it may...

If following commits look okay, I'll squash and add sign-off per devstein request.

To clarify, `yarn global add` expects a package file, not a package folder, as illustrated in the following. My _package.json_ is: ```json { "name": "markov-pwgen", "version": "1.0.0", "description": "Markov chain...

You'll need a recent version of the Bash shell in your path to run the following script. ```shell #!/usr/bin/env bash # # @(#) asdf-install # # SYNOPSIS # # asdf-install...

`asdf` shims support multiple versions. But for each version (of nodejs, in this case), the module needs to be installed separately. To see why, run the command: ``` asdf which...

`asdf` is just a framework. If you don't like how the java plugin works, you might be better served by directing your comments to its authors: ``` asdf plugin list...

The authors mention testing with Python 9. I haven't tried the ML code yet, but installation completes with the latest iteration of Python 11: ```shell mkdir 'D2L Jupyter Notebooks' cd...

The following works for me using Python 3.12.4. I didn't adjust the version in d2l/\_\_init\_\_.py because only _setup.py_ is modified: ```shell git clone https://github.com/d2l-ai/d2l-en.git cd ./d2l-en patch

I'm not sure what module was compiled with NumPy 1.x? Python does a poor job of dependency resolution. So the burden is on the user to create a pristine environment...