Hello Binder forum:
I am using Windows 10 and using anaconda environment. 1.9.12.
I am trying to create a binder from the following GitHub repo,
From the anaconda navigator, Jupyter Lab, running the notebook(s) is successful. I have extracted the environment dependencies using the following command,
conda env export > environment.yaml
It looks like BINDER (via mybinder.org) for some reason is using the old image
(log: Found image; launching image…). Not sure how to force BINDER to recreate the image.
After the BINDER session is ready, when I tried to run the notebook, I get
ModuleNotFoundError Traceback (most recent call last)
in
7 import time
8 import argparse
----> 9 import numpy as np
10 import pandas as pd
11 from pandas.io.json import json_normalize
ModuleNotFoundError: No module named ‘numpy’
Any help would be greatly appreciated.
Thanks
Ravi