Reputation: 3
My development environment is Anaconda3 with a virtual environment "OpenCV3". I can run Jupyter in my main enviroment, but I don't know how to run jupyter in virtual environment "OpenCV3".
could you please show me how to do it?
Upvotes: 0
Views: 1948
Reputation: 5521
The following options are available (there may be others available)
conda
environment from the terminal (using the appropriate command corresponding to your OS) and run jupyter notebook
.Kernel>Change Kernel
menu.Upvotes: 1