pip install in conda environment (BrainFlow)

I used Jupyter Notebook and conda navigator. I want to use brainflow as integration with MNE library to use open-bci eeg cap for collecting data. But as brainflow package is not available in conda, I have to use pip install brainflow every time. How can I permanently install brainflow in my conda environment using the pip command? Also, do you have any suggestions rather than brainflow for using
OpenBCI - EEG Caps to collect data and process in real-time?

I don’t use the anaconda navigator - but I think there is an anaconda prompt or commandline option to open. You can then do

conda activate mne
pip install brainflow

Alternatively in your jupyter notebook – opened in the mne environment, you can do the following in one of the jupyter cells

!pip install brainflow

This will call pip in the terminal and install brainflow.

Hope that helps
–Jeff

Hi @jstout211,
Thank you so much. It works very well.

Best,
Soroush