Spyder does not autocomplete local variables

后端 未结 5 1714
有刺的猬
有刺的猬 2020-12-23 02:08

I\'m having a problem getting my local variables autocompleted. This is a very basic functionality which I\'m sure it should support. When I\'m starting to write a variable

5条回答
  •  一生所求
    2020-12-23 02:49

    Idoda, I made a little guide to install Python for scientific computing on Ubuntu or Debian from their repositories. I tested correctly using Python 3 on Ubuntu 14.04 LTS.

    It summarizes as follows. First, install the interpreter and the package manager:

    sudo apt-get install python3 python3-pip 
    

    Now install the Spyder's IDE:

    sudo apt-get install spyder3
    

    Thanks to Carlos Cordoba's advice, if you want to enjoy the autocomplete execute:

    sudo pip3 install rope_py3k
    

    Finally, open Spider and check if the autocomplete works rightly.

提交回复
热议问题