wolfbagel
wolfbagel

Reputation: 478

How do I add intellisense to anaconda spyder?

I'm new to Machine Learning and using Spyder. I'm on Python 3.6. How do I add intellisense to Spyder so when I type a class or method name I will see a list of available options? I checked my Preferences tab but didn't see anything. Could've missed it though. Also, my Preferences are listed under the Python window(see below)

Preferences Window

I've heard of the Preferences option being located under the Help menu but didn't see anything.

Upvotes: 4

Views: 10533

Answers (1)

bulltorious
bulltorious

Reputation: 7897

  1. Run Anaconda Prompt.
  2. At the prompt "activate yourenvironmentyouwantintellisense"
  3. You should now see your environment name in parentheses.
  4. type pip install rope_py3k
  5. Close out of everything and reopen anaconda, making sure you are using the correct environment.
  6. Enjoy intellisense.

Upvotes: 2

Related Questions