AKA_Tom
AKA_Tom

Reputation: 95

Selecting a virtual env in atom from conda

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'?

enter image description here

enter image description here

Upvotes: 0

Views: 360

Answers (1)

wind
wind

Reputation: 2441

You can fix your problem by doing this:

  1. Activate your conda environment in the terminal

  2. Run atom --new-instance

Upvotes: 2

Related Questions