Reputation: 95
I am trying to become familiar with atom.io text editor. https://www.youtube.com/watch?v=qvSpZXT8XhU The link shows a good example of activating a particular virtual environment of interest (skip to 12 minutes). This is done using the 'atom-python-virtualenv' package. However, they don't use anaconda to manage their virtual environments. I believe the path to their envs is different. Has anyone successfully been able to use the atom.io package 'atom-python-virtualenv' to list the same ones available via 'conda env list'?
Upvotes: 0
Views: 360
Reputation: 2441
You can fix your problem by doing this:
Activate your conda environment in the terminal
Run atom --new-instance
Upvotes: 2