I have set up a jupyter notebook within a virtual environment. Now I want to deploy it with mybinder
I generated an environment.yml directly from the anaconda prompt.
name: test_environment
channels:
- conda-forge
dependencies:
- python
- numpy
The building with binder does not show any errors and the jupyter notebook is launched, but when I try to import the numpy module the notebook tells me that the module has not been found.
When I check on which environment the notebook is running with
!conda info
I see that it is running on the notebook environment and not on my test_environment. Yet I have no idea on how to guide binder to my specified environment as it is already in the same directory as my notebook.ipynb file
Note: I need my files to stay within a subdirectory of my repository.