What packages to install in Atom editor

0 votes
I have recently started working on Python and I am trying to set up my environment to start python builds. I am using Atom as an editor. What all should I do? I did the following:

Installed python
Installed pip
 

In Atom, installed the following packages:

linter
linter-flake8
linter-ui-default
busy-signal
intentions
 

But I have been getting this error: Flake8 crashed! linter-flake8:: Flake8 threw an error related to: Failed to spawn command flake8. Make sure flake8 is installed and on your PATH Please check Atom's Console for more details

Can anyone help me with it?
Mar 14, 2019 in Python by ana1504.k
• 7,910 points
1,935 views

1 answer to this question.

0 votes
Setting up Atom as an IDE might not be in your best interests to learn python.

Python is a scripting language. Pip is a package manager. Atom is a code editor. All you need now is the command line to bring all of them together. So first you need to Open your terminal and cd (change directory) to the location where your file is saved. Run it using the command "python file_name.py" on the terminal.

If you have imported a package in your script that isn't installed on your machine, simply execute "pip install package_name" on the terminal. I hope this will help you in the long run!
answered Mar 14, 2019 by SDeb
• 13,300 points

Related Questions In Python

0 votes
1 answer

What is the procedure to install python packages in IPython?

You can use the '!' prefix like ...READ MORE

answered Aug 21, 2019 in Python by Neel
• 3,020 points
387 views
+4 votes
7 answers
+1 vote
1 answer

What is the correct order to learn concepts in Python for machine learning?

Machine Learning is a vast domain. It ...READ MORE

answered Jul 25, 2018 in Python by Abhi
• 3,720 points
786 views
+2 votes
1 answer

How to install pip in windows?

Step 1:  Open the following link and go to ...READ MORE

answered Nov 27, 2018 in Python by Priyaj
• 58,090 points
4,874 views
0 votes
2 answers
+1 vote
2 answers

how can i count the items in a list?

Syntax :            list. count(value) Code: colors = ['red', 'green', ...READ MORE

answered Jul 7, 2019 in Python by Neha
• 330 points

edited Jul 8, 2019 by Kalgi 4,051 views
0 votes
1 answer
0 votes
1 answer

What are the ternary conditional operator in Python?

The Ternary Conditional operator was added in ...READ MORE

answered Sep 19, 2018 in Python by SDeb
• 13,300 points
557 views
0 votes
1 answer

How to use a global variable in function?

The global variable can be used in ...READ MORE

answered Sep 27, 2018 in Python by SDeb
• 13,300 points
711 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP