Robin Wilson

Results 75 comments of Robin Wilson

Thanks for the PR. It's weird that this is happening for you, as there is specific code in the `plot360` method (called by `run_and_plot_360`) which tries to import from matplotlib,...

The problem seems to be that the Py6S module and the sixs executable can't be found. How are you running IPython and Jupyter? You'll need to activate the conda environment...

Ok, that's because you'll need to install ipython _into_ the environment. The conda environment is completely separate from every other installation of Python you have on your system: so any...

Hi, How did you get the sixsV1.1 file installed on Colab? Did you install it using conda, or did you compile it manually? If you compiled it manually, did you...

Thanks, this looks great. I've only had a quick look so far, but I'll aim to review it properly as soon as I get chance. In the meantime, if you...

Just to note our discussions at the sprint: it looks like the `dump_stats` method would need patching - and that _should_ be all that is needed.

A good list of some stuff that isn't documented at the moment but needs to be can be found at https://github.com/softwaresaved/recipy-test/blob/master/Deployment.md#documentation, thanks to @mikej888

A few notes for anyone who may tackle this: This code lists all 'console_script' entry points: we could use similar code to list all `recipy_hook` entrypoints. ``` import pkg_resources list(pkg_resources.iter_entry_points('console_scripts'))...

One potential way to solve this would be to have a separate requirements.txt-style file for each Python version, and to install from this. Unfortunately this can't be a conda environment.yml...

This would probably be a change that would be required before #207 could be fully tested and merged - so what do you think about me going ahead with this...