Python Forum
Thread Rating:
  • 1 Vote(s) - 2 Average
  • 1
  • 2
  • 3
  • 4
  • 5
getting started, again
#3
(Jul-13-2018, 09:06 AM)bluedoor5 Wrote: C:\folder_name\ Python installed here ?
You can choose folder like C:\python37 in follow Python 3.6/3.7 and pip installation under Windows

(Jul-13-2018, 05:32 AM)bluedoor5 Wrote: beautifulsoup4-4.6.0.tar
but seems corrupted, opens in word.doc only.
You use pip to install all Python modules/libraries.
That's why is important that you follow link over,and do test that pip work from anywhere in cmd.
cmd:
C:\>python -V
Python 3.7.0

C:\>pip -V
pip 10.0.1 from c:\python37\lib\site-packages\pip (python 3.7)

# Install BeautifulSoup 
C:\>pip install beautifulsoup4
Requirement already satisfied: beautifulsoup4 in c:\python37\lib\site-packages (4.6.0)

# Test that it work
C:\>python
Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:06:47) [MSC v.1914 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import bs4
>>> bs4.__version__
'4.6.0'
>>> 
Quote:1 of
IDLE Lif 1.1-Py26
IDLE is not good at all.

I will suggest maybe the easiest editors/IDE just to get started like PyScripter or Thonny.
Then later you should look at editors like VS Code(Free), PyCharm(free communty edtion).
My quick review a while back of VS Code.

Demo PyScripter you can just write code and Push run button,not even need to save.
Then in bottom you hav much better IDLE,where output will be and further testing can be done.
[Image: T4pDpR.jpg]
Reply


Messages In This Thread
getting started, again - by bluedoor5 - Jul-13-2018, 05:32 AM
RE: getting started, again - by bluedoor5 - Jul-13-2018, 09:06 AM
RE: getting started, again - by snippsat - Jul-13-2018, 10:50 AM
RE: getting started, again - by bluedoor5 - Jul-13-2018, 12:38 PM
RE: getting started, again - by bluedoor5 - Jul-16-2018, 10:00 PM
RE: getting started, again - by snippsat - Jul-16-2018, 10:45 PM
RE: getting started, again - by bluedoor5 - Jul-19-2018, 08:39 PM
RE: getting started, again - by nilamo - Jul-19-2018, 08:48 PM
RE: getting started, again - by bluedoor5 - Jul-19-2018, 09:06 PM
RE: getting started, again - by nilamo - Jul-19-2018, 09:07 PM
RE: getting started, again - by bluedoor5 - Jul-19-2018, 09:44 PM
RE: getting started, again - by bluedoor5 - Jul-20-2018, 10:08 AM
RE: getting started, again - by snippsat - Jul-20-2018, 11:00 AM
RE: getting started, again - by bluedoor5 - Jul-20-2018, 10:47 PM
RE: getting started, again - by bluedoor5 - Jul-21-2018, 03:18 AM
RE: getting started, again - by snippsat - Jul-21-2018, 06:50 AM
RE: getting started, again - by bluedoor5 - Jul-21-2018, 02:44 PM
RE: getting started, again - by snippsat - Jul-21-2018, 03:29 PM
RE: getting started, again - by bluedoor5 - Jul-21-2018, 04:36 PM
RE: getting started, again - by nilamo - Jul-23-2018, 06:00 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  getting started b4iknew 3 2,663 Jan-22-2019, 09:12 AM
Last Post: b4iknew

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020