How To Integrate Python3-flake8 With Atom In Ubuntu 16.04
I installed python3-flake8 on Ubuntu 16.04 with the command sudo apt-get install python3-flake8 Then proceeded to install the flake8 linter package on Atom. However on restart it s
Solution 1:
From Ubuntu 16.04, the flake8
binary can be found in the flake8
package rather than python3-flake8
(Xenial/16.04 and Yakkety/16.10). Installing this will allow you to use the flake8
command in the terminal, and will also allow Atom to access it and lint your code.
You can install flake8
correctly with:
sudo apt-get install flake8
Post a Comment for "How To Integrate Python3-flake8 With Atom In Ubuntu 16.04"