You are on page 1of 2

http://simpledeveloper.

com/how-to-install-pip/
http://stackoverflow.com/questions/9453986/easy-install-lxml-on-python-2-7-on-wi
ndows
------------Error:
>>> from lxml import html
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\python\lib\site-packages\lxml-3.3.5-py3.5-win32.egg\lxml\html\__init_
_.py", line 42, in <module>
from lxml import etree
ImportError: DLL load failed: The specified module could not be found.
Solu: http://stackoverflow.com/questions/20201868/importerror-dll-load-failed-th
e-specified-module-could-not-be-found
--------------how to install Setup.py?
cmd promet
path: example "c:\\rm\\setup.py" file available
1. cd rm
2.c:\>rm> setup.py install
--------------------Error: no module named 'bs4' windows 64
soul:
http://stackoverflow.com/questions/33331850/importerror-no-module-named-bs4-in-w
indows
Note: C:\Users\Me\AppData\Local\Programs\Python\Python35-32 is Python Install F
older
C:\Users\Me\AppData\Local\Programs\Python\Python35-32\Scripts>pip install b
eautifulsoup4
Collecting beautifulsoup4
Downloading beautifulsoup4-4.4.1-py3-none-any.whl (81kB)
100% |################################| 81kB 890kB/s
Installing collected packages: beautifulsoup4
Successfully installed beautifulsoup4-4.4.1
C:\Users\Me\AppData\Local\Programs\Python\Python35-32>python test.py
test.py contains only:
from bs4 import BeautifulSoup
--------------------------------Error:

no module named 'requests' windows 64

soul:
C:\opts\Python27>pip install requests
Note: C:\opts\Python27 is pytoh install folder

----------------------------------https://wiki.python.org/moin/Asking%20for%20Help/How%20to%20store%20information%
20in%20variable%20arrays%3F

You might also like