Hi all, I'm trying to use bs4 for some html scraping. I have downloaded and installed the bs4 directory and opened up a python session, but when I try to import bs4, python is not finding the module. When I unzipped the bs4 file, should I place all the .py files in my module directory?
> Hi all,
> I'm trying to use bs4 for some html scraping. I have downloaded and
> installed the bs4 directory and opened up a python session, but when I try
> to import bs4, python is not finding the module. When I unzipped the bs4
> file, should I place all the .py files in my module directory?
> thanks,
> --
> You received this message because you are subscribed to the Google Groups
> "beautifulsoup" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/beautifulsoup/-/c22SFJGRmNUJ.
> To post to this group, send email to beautifulsoup@googlegroups.com.
> To unsubscribe from this group, send email to
> beautifulsoup+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/beautifulsoup?hl=en.
>> Hi all, >> I'm trying to use bs4 for some html scraping. I have downloaded and >> installed the bs4 directory and opened up a python session, but when I try >> to import bs4, python is not finding the module. When I unzipped the bs4 >> file, should I place all the .py files in my module directory?
>> thanks,
>> -- >> You received this message because you are subscribed to the Google Groups >> "beautifulsoup" group. >> To view this discussion on the web visit >> https://groups.google.com/d/msg/beautifulsoup/-/c22SFJGRmNUJ. >> To post to this group, send email to beautifulsoup@googlegroups.com. >> To unsubscribe from this group, send email to >> beautifulsoup+unsubscribe@googlegroups.com. >> For more options, visit this group at >> http://groups.google.com/group/beautifulsoup?hl=en.
That's all I ever do when I install it. You can have the unzipped bs4
directory anywhere on your system, then run the included setup.py and it
will lay eggs in your Python directory
>>> Hi all,
>>> I'm trying to use bs4 for some html scraping. I have downloaded and
>>> installed the bs4 directory and opened up a python session, but when I try
>>> to import bs4, python is not finding the module. When I unzipped the bs4
>>> file, should I place all the .py files in my module directory?
>>> thanks,
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "beautifulsoup" group.
>>> To view this discussion on the web visit https://groups.google.com/d/** >>> msg/beautifulsoup/-/**c22SFJGRmNUJ<https://groups.google.com/d/msg/beautifulsoup/-/c22SFJGRmNUJ>
>>> .
>>> To post to this group, send email to beautifulsoup@googlegroups.com**.
>>> To unsubscribe from this group, send email to beautifulsoup+unsubscribe@
>>> **googlegroups.com <beautifulsoup%2Bunsubscribe@googlegroups.com>.
>>> For more options, visit this group at http://groups.google.com/** >>> group/beautifulsoup?hl=en<http://groups.google.com/group/beautifulsoup?hl=en>
>>> .
> To post to this group, send email to beautifulsoup@googlegroups.com.
> To unsubscribe from this group, send email to
> beautifulsoup+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/beautifulsoup?hl=en.
On Tuesday, July 24, 2012 8:17:19 AM UTC-7, LunkRat wrote:
> That's all I ever do when I install it. You can have the unzipped bs4 > directory anywhere on your system, then run the included setup.py and it > will lay eggs in your Python directory
> On Tue, Jul 24, 2012 at 10:05 AM, Randy Long <gisdudes...@gmail.com>wrote:
>> No, I didn't. Damn! >> That simple?
>> On Monday, July 23, 2012 5:46:54 AM UTC-7, LunkRat wrote:
>>> Did you run setup.py from the bs4 directory? Like:
>>>> Hi all, >>>> I'm trying to use bs4 for some html scraping. I have downloaded and >>>> installed the bs4 directory and opened up a python session, but when I try >>>> to import bs4, python is not finding the module. When I unzipped the bs4 >>>> file, should I place all the .py files in my module directory?
>>>> thanks,
>>>> -- >>>> You received this message because you are subscribed to the Google >>>> Groups "beautifulsoup" group. >>>> To view this discussion on the web visit https://groups.google.com/d/** >>>> msg/beautifulsoup/-/**c22SFJGRmNUJ<https://groups.google.com/d/msg/beautifulsoup/-/c22SFJGRmNUJ> >>>> . >>>> To post to this group, send email to beautifulsoup@googlegroups.com**. >>>> To unsubscribe from this group, send email to >>>> beautifulsoup+unsubscribe@**googlegroups.com<beautifulsoup%2Bunsubscribe@go oglegroups.com> >>>> . >>>> For more options, visit this group at http://groups.google.com/** >>>> group/beautifulsoup?hl=en<http://groups.google.com/group/beautifulsoup?hl=en> >>>> .
>> To post to this group, send email to beautifulsoup@googlegroups.com. >> To unsubscribe from this group, send email to >> beautifulsoup+unsubscribe@googlegroups.com. >> For more options, visit this group at >> http://groups.google.com/group/beautifulsoup?hl=en.
Hey Randy, I created this little pdf to help someone else install easyinstall in order to download bs4 and other python libraries... I am running python 2.7 but the different version should not matter... follow those instructions and once you have easyinstall installed to your python scripts folder (C:\Python32\Scripts - or something similar) then in the command prompt type...
C:\Python32\Scripts\pip install BeautifulSoup4
and it should go out grab the correct files and install them correctly in your directory...
On Sunday, July 22, 2012 5:28:12 PM UTC-4, Randy Long wrote:
> Hi all, > I'm trying to use bs4 for some html scraping. I have downloaded and > installed the bs4 directory and opened up a python session, but when I try > to import bs4, python is not finding the module. When I unzipped the bs4 > file, should I place all the .py files in my module directory?
On Saturday, July 28, 2012 11:18:33 AM UTC-7, Tom wrote:
> Hey Randy, > I created this little pdf to help someone else install easyinstall > in order to download bs4 and other python libraries... I am running python > 2.7 but the different version should not matter... follow those > instructions and once you have easyinstall installed to your python scripts > folder (C:\Python32\Scripts - or something similar) then in the command > prompt type...
> C:\Python32\Scripts\pip install BeautifulSoup4
> and it should go out grab the correct files and install them correctly in > your directory...
> Goodluck! Im a GIS specialist as well haha
> Tom
> On Sunday, July 22, 2012 5:28:12 PM UTC-4, Randy Long wrote:
>> Hi all, >> I'm trying to use bs4 for some html scraping. I have downloaded and >> installed the bs4 directory and opened up a python session, but when I try >> to import bs4, python is not finding the module. When I unzipped the bs4 >> file, should I place all the .py files in my module directory?
Well i chose 2.7 bc most libraries out there.. Or at the time were built for 2.7 and not for 3.0. 2.7 works great for me so i would say give that a try then
Sent from my iPhone
On Jul 28, 2012, at 5:18 PM, Randy Long <gisdudes...@gmail.com> wrote:
> I tried the easy install and it said"you need python version 2.7". Maybe I should just downgrade to 2.7?
> On Saturday, July 28, 2012 11:18:33 AM UTC-7, Tom wrote:
> Hey Randy,
> I created this little pdf to help someone else install easyinstall in order to download bs4 and other python libraries... I am running python 2.7 but the different version should not matter... follow those instructions and once you have easyinstall installed to your python scripts folder (C:\Python32\Scripts - or something similar) then in the command prompt type...
> C:\Python32\Scripts\pip install BeautifulSoup4
> and it should go out grab the correct files and install them correctly in your directory...
> Goodluck! Im a GIS specialist as well haha
> Tom
> On Sunday, July 22, 2012 5:28:12 PM UTC-4, Randy Long wrote:
> Hi all,
> I'm trying to use bs4 for some html scraping. I have downloaded and installed the bs4 directory and opened up a python session, but when I try to import bs4, python is not finding the module. When I unzipped the bs4 file, should I place all the .py files in my module directory?
> thanks,
> -- > You received this message because you are subscribed to the Google Groups "beautifulsoup" group.
> To view this discussion on the web visit https://groups.google.com/d/msg/beautifulsoup/-/f8Nclnpf3JYJ.
> To post to this group, send email to beautifulsoup@googlegroups.com.
> To unsubscribe from this group, send email to beautifulsoup+unsubscribe@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/beautifulsoup?hl=en.
On Saturday, July 28, 2012 2:40:55 PM UTC-7, Tom wrote:
> Well i chose 2.7 bc most libraries out there.. Or at the time were built > for 2.7 and not for 3.0. 2.7 works great for me so i would say give that a > try then
> Sent from my iPhone
> On Jul 28, 2012, at 5:18 PM, Randy Long <gisdudes...@gmail.com> wrote:
> I tried the easy install and it said"you need python version 2.7". Maybe I > should just downgrade to 2.7?
> On Saturday, July 28, 2012 11:18:33 AM UTC-7, Tom wrote:
>> Hey Randy, >> I created this little pdf to help someone else install >> easyinstall in order to download bs4 and other python libraries... I am >> running python 2.7 but the different version should not matter... follow >> those instructions and once you have easyinstall installed to your python >> scripts folder (C:\Python32\Scripts - or something similar) then in the >> command prompt type...
>> C:\Python32\Scripts\pip install BeautifulSoup4
>> and it should go out grab the correct files and install them correctly in >> your directory...
>> Goodluck! Im a GIS specialist as well haha
>> Tom
>> On Sunday, July 22, 2012 5:28:12 PM UTC-4, Randy Long wrote:
>>> Hi all, >>> I'm trying to use bs4 for some html scraping. I have downloaded and >>> installed the bs4 directory and opened up a python session, but when I try >>> to import bs4, python is not finding the module. When I unzipped the bs4 >>> file, should I place all the .py files in my module directory?
>>> thanks,
>> -- > You received this message because you are subscribed to the Google Groups > "beautifulsoup" group. > To view this discussion on the web visit > https://groups.google.com/d/msg/beautifulsoup/-/f8Nclnpf3JYJ. > To post to this group, send email to beautifulsoup@googlegroups.com. > To unsubscribe from this group, send email to > beautifulsoup+unsubscribe@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/beautifulsoup?hl=en.
On Saturday, 28 July 2012 19:18:33 UTC+1, Tom wrote:
> I created this little pdf to help someone else install easyinstall in > order to download bs4 and other python libraries... I am running python 2.7 > but the different version should not matter...
You link to setuptools, which is unmaintained and won't work on Python 3. It's a good idea to point to distribute instead - it's a fork of setuptools that's still maintained, and works with Python 2 and 3:
> I have my python package at remote server machine under linux, that's
> where i run python files. But i work at home under Win 7. How can i install
> bs to remote machine under linux. Would you guideline step by step? I have
> just beautifulsoup4-4.1.3.tar.gzpackage on my desktop.
> вторник, 24 июля 2012 г., 19:17:19 UTC+4 пользователь LunkRat написал:
>> That's all I ever do when I install it. You can have the unzipped bs4
>> directory anywhere on your system, then run the included setup.py and it
>> will lay eggs in your Python directory
>> On Tue, Jul 24, 2012 at 10:05 AM, Randy Long <gisdu...@gmail.com> wrote:
>>> No, I didn't. Damn!
>>> That simple?
>>> On Monday, July 23, 2012 5:46:54 AM UTC-7, LunkRat wrote:
>>>> Did you run setup.py from the bs4 directory? Like:
>>>>> Hi all,
>>>>> I'm trying to use bs4 for some html scraping. I have downloaded and
>>>>> installed the bs4 directory and opened up a python session, but when I try
>>>>> to import bs4, python is not finding the module. When I unzipped the bs4
>>>>> file, should I place all the .py files in my module directory?
>>>>> thanks,
>>>>> --
>>>>> You received this message because you are subscribed to the Google
>>>>> Groups "beautifulsoup" group.
>>>>> To view this discussion on the web visit https://groups.google.com/d/* >>>>> *ms**g/beautifulsoup/-/**c22SFJGRmNUJ<https://groups.google.com/d/msg/beautifulsoup/-/c22SFJGRmNUJ>
>>>>> **.
>>>>> To post to this group, send email to beauti...@googlegroups.com****.
>>>>> To unsubscribe from this group, send email to beautifulsou...@**goog**
>>>>> legroups.com.
>>> To post to this group, send email to beauti...@googlegroups.com**.
>>> To unsubscribe from this group, send email to beautifulsou...@**
>>> googlegroups.com.
> To post to this group, send email to beautifulsoup@googlegroups.com.
> To unsubscribe from this group, send email to
> beautifulsoup+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/beautifulsoup?hl=en.
Thank you, Link, i did as you suggested with a success, how about my python
files, should they be located in bs4 folder if i import bs4 or it's not
nessasary?
On Wed, Sep 12, 2012 at 6:10 PM, Link Swanson <l...@mustbuilddigital.com>wrote:
> I think this is what you are after based on your question.
> - Link
> On Wed, Sep 12, 2012 at 7:43 AM, Igor Savinkin <igor.savin...@gmail.com>wrote:
>> I have my python package at remote server machine under linux, that's
>> where i run python files. But i work at home under Win 7. How can i install
>> bs to remote machine under linux. Would you guideline step by step? I have
>> just beautifulsoup4-4.1.3.tar.gzpackage on my desktop.
>> вторник, 24 июля 2012 г., 19:17:19 UTC+4 пользователь LunkRat написал:
>>> That's all I ever do when I install it. You can have the unzipped bs4
>>> directory anywhere on your system, then run the included setup.py and it
>>> will lay eggs in your Python directory
>>> On Tue, Jul 24, 2012 at 10:05 AM, Randy Long <gisdu...@gmail.com> wrote:
>>>> No, I didn't. Damn!
>>>> That simple?
>>>> On Monday, July 23, 2012 5:46:54 AM UTC-7, LunkRat wrote:
>>>>> Did you run setup.py from the bs4 directory? Like:
>>>>>> Hi all,
>>>>>> I'm trying to use bs4 for some html scraping. I have downloaded and
>>>>>> installed the bs4 directory and opened up a python session, but when I try
>>>>>> to import bs4, python is not finding the module. When I unzipped the bs4
>>>>>> file, should I place all the .py files in my module directory?
>>>>>> thanks,
>>>>>> --
>>>>>> You received this message because you are subscribed to the Google
>>>>>> Groups "beautifulsoup" group.
>>>>>> To view this discussion on the web visit https://groups.google.com/d/ >>>>>> **ms**g/beautifulsoup/-/**c22SFJGRmNUJ<https://groups.google.com/d/msg/beautifulsoup/-/c22SFJGRmNUJ>
>>>>>> **.
>>>>>> To post to this group, send email to beauti...@googlegroups.com****.
>>>>>> To unsubscribe from this group, send email to beautifulsou...@**goog*
>>>>>> *legroups.com.
>>>> To post to this group, send email to beauti...@googlegroups.com**.
>>>> To unsubscribe from this group, send email to beautifulsou...@**
>>>> googlegroups.com.
>> To post to this group, send email to beautifulsoup@googlegroups.com.
>> To unsubscribe from this group, send email to
>> beautifulsoup+unsubscribe@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/beautifulsoup?hl=en.
> --
> Link Swanson
> Must Build Digital
> --
> You received this message because you are subscribed to the Google Groups
> "beautifulsoup" group.
> To post to this group, send email to beautifulsoup@googlegroups.com.
> To unsubscribe from this group, send email to
> beautifulsoup+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/beautifulsoup?hl=en.
-- Igor Savinkin, +7 929-593-84-67
Skype: igorsavinkin
Moscow, Russian Federation.
In Him.
No, you can run your scripts from anywhere once you have installed bs4.
Python's import statements look for modules in the Python directory, not
the cwd.
Link
On Thu, Sep 13, 2012 at 1:10 AM, Igor Savinkin <igor.savin...@gmail.com>wrote:
> Thank you, Link, i did as you suggested with a success, how about my
> python files, should they be located in bs4 folder if i import bs4 or it's
> not nessasary?
> On Wed, Sep 12, 2012 at 6:10 PM, Link Swanson <l...@mustbuilddigital.com>wrote:
>> Igor,
>> Do you use PuTTY on Win7 to get an SSH connection to your Linux server?
>> This is what I would do:
>> From a command line on your Linux server, use wget to download the latest
>> bs4 directly to your server, untar it, and run setup.py:
>> I think this is what you are after based on your question.
>> - Link
>> On Wed, Sep 12, 2012 at 7:43 AM, Igor Savinkin <igor.savin...@gmail.com>wrote:
>>> I have my python package at remote server machine under linux, that's
>>> where i run python files. But i work at home under Win 7. How can i install
>>> bs to remote machine under linux. Would you guideline step by step? I have
>>> just beautifulsoup4-4.1.3.tar.gzpackage on my desktop.
>>> вторник, 24 июля 2012 г., 19:17:19 UTC+4 пользователь LunkRat написал:
>>>> That's all I ever do when I install it. You can have the unzipped bs4
>>>> directory anywhere on your system, then run the included setup.py and it
>>>> will lay eggs in your Python directory
>>>> On Tue, Jul 24, 2012 at 10:05 AM, Randy Long <gisdu...@gmail.com>wrote:
>>>>> No, I didn't. Damn!
>>>>> That simple?
>>>>> On Monday, July 23, 2012 5:46:54 AM UTC-7, LunkRat wrote:
>>>>>> Did you run setup.py from the bs4 directory? Like:
>>>>>>> Hi all,
>>>>>>> I'm trying to use bs4 for some html scraping. I have downloaded and
>>>>>>> installed the bs4 directory and opened up a python session, but when I try
>>>>>>> to import bs4, python is not finding the module. When I unzipped the bs4
>>>>>>> file, should I place all the .py files in my module directory?
>>>>>>> thanks,
>>>>>>> --
>>>>>>> You received this message because you are subscribed to the Google
>>>>>>> Groups "beautifulsoup" group.
>>>>>>> To view this discussion on the web visit
>>>>>>> https://groups.google.com/d/**ms**g/beautifulsoup/-/**c22SFJGRmNUJ<https://groups.google.com/d/msg/beautifulsoup/-/c22SFJGRmNUJ>
>>>>>>> **.
>>>>>>> To post to this group, send email to beauti...@googlegroups.com****
>>>>>>> .
>>>>>>> To unsubscribe from this group, send email to beautifulsou...@**goog
>>>>>>> **legroups.com.
>>>>> To post to this group, send email to beauti...@googlegroups.com**.
>>>>> To unsubscribe from this group, send email to beautifulsou...@**
>>>>> googlegroups.com.
>>> To post to this group, send email to beautifulsoup@googlegroups.com.
>>> To unsubscribe from this group, send email to
>>> beautifulsoup+unsubscribe@googlegroups.com.
>>> For more options, visit this group at
>>> http://groups.google.com/group/beautifulsoup?hl=en.
>> --
>> Link Swanson
>> Must Build Digital
>> --
>> You received this message because you are subscribed to the Google Groups
>> "beautifulsoup" group.
>> To post to this group, send email to beautifulsoup@googlegroups.com.
>> To unsubscribe from this group, send email to
>> beautifulsoup+unsubscribe@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/beautifulsoup?hl=en.
> --
> Igor Savinkin, +7 929-593-84-67
> Skype: igorsavinkin
> Moscow, Russian Federation.
> In Him.
> --
> You received this message because you are subscribed to the Google Groups
> "beautifulsoup" group.
> To post to this group, send email to beautifulsoup@googlegroups.com.
> To unsubscribe from this group, send email to
> beautifulsoup+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/beautifulsoup?hl=en.
> No, you can run your scripts from anywhere once you have installed bs4.
> Python's import statements look for modules in the Python directory, not
> the cwd.
> Link
> On Thu, Sep 13, 2012 at 1:10 AM, Igor Savinkin <igor.savin...@gmail.com>wrote:
>> Thank you, Link, i did as you suggested with a success, how about my
>> python files, should they be located in bs4 folder if i import bs4 or it's
>> not nessasary?
>> On Wed, Sep 12, 2012 at 6:10 PM, Link Swanson <l...@mustbuilddigital.com>wrote:
>>> Igor,
>>> Do you use PuTTY on Win7 to get an SSH connection to your Linux server?
>>> This is what I would do:
>>> From a command line on your Linux server, use wget to download the
>>> latest bs4 directly to your server, untar it, and run setup.py:
>>> I think this is what you are after based on your question.
>>> - Link
>>> On Wed, Sep 12, 2012 at 7:43 AM, Igor Savinkin <igor.savin...@gmail.com>wrote:
>>>> I have my python package at remote server machine under linux, that's
>>>> where i run python files. But i work at home under Win 7. How can i install
>>>> bs to remote machine under linux. Would you guideline step by step? I have
>>>> just beautifulsoup4-4.1.3.tar.gzpackage on my desktop.
>>>> вторник, 24 июля 2012 г., 19:17:19 UTC+4 пользователь LunkRat написал:
>>>>> That's all I ever do when I install it. You can have the unzipped bs4
>>>>> directory anywhere on your system, then run the included setup.py and it
>>>>> will lay eggs in your Python directory
>>>>> On Tue, Jul 24, 2012 at 10:05 AM, Randy Long <gisdu...@gmail.com>wrote:
>>>>>> No, I didn't. Damn!
>>>>>> That simple?
>>>>>> On Monday, July 23, 2012 5:46:54 AM UTC-7, LunkRat wrote:
>>>>>>> Did you run setup.py from the bs4 directory? Like:
>>>>>>>> Hi all,
>>>>>>>> I'm trying to use bs4 for some html scraping. I have downloaded and
>>>>>>>> installed the bs4 directory and opened up a python session, but when I try
>>>>>>>> to import bs4, python is not finding the module. When I unzipped the bs4
>>>>>>>> file, should I place all the .py files in my module directory?
>>>>>>>> thanks,
>>>>>>>> --
>>>>>>>> You received this message because you are subscribed to the Google
>>>>>>>> Groups "beautifulsoup" group.
>>>>>>>> To view this discussion on the web visit
>>>>>>>> https://groups.google.com/d/**ms**g/beautifulsoup/-/**c22SFJGRmNUJ<https://groups.google.com/d/msg/beautifulsoup/-/c22SFJGRmNUJ>
>>>>>>>> **.
>>>>>>>> To post to this group, send email to beauti...@googlegroups.com***
>>>>>>>> *.
>>>>>>>> To unsubscribe from this group, send email to beautifulsou...@**
>>>>>>>> goog**legroups.com.
>>>>>> To post to this group, send email to beauti...@googlegroups.com**.
>>>>>> To unsubscribe from this group, send email to beautifulsou...@**
>>>>>> googlegroups.com.
>>>> To post to this group, send email to beautifulsoup@googlegroups.com.
>>>> To unsubscribe from this group, send email to
>>>> beautifulsoup+unsubscribe@googlegroups.com.
>>>> For more options, visit this group at
>>>> http://groups.google.com/group/beautifulsoup?hl=en.
>>> --
>>> Link Swanson
>>> Must Build Digital
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "beautifulsoup" group.
>>> To post to this group, send email to beautifulsoup@googlegroups.com.
>>> To unsubscribe from this group, send email to
>>> beautifulsoup+unsubscribe@googlegroups.com.
>>> For more options, visit this group at
>>> http://groups.google.com/group/beautifulsoup?hl=en.
>> --
>> Igor Savinkin, +7 929-593-84-67
>> Skype: igorsavinkin
>> Moscow, Russian Federation.
>> In Him.
>> --
>> You received this message because you are subscribed to the Google Groups
>> "beautifulsoup" group.
>> To post to this group, send email to beautifulsoup@googlegroups.com.
>> To unsubscribe from this group, send email to
>> beautifulsoup+unsubscribe@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/beautifulsoup?hl=en.
> --
> Link Swanson
> Must Build Digital
> --
> You received this message because you are subscribed to the Google Groups
> "beautifulsoup" group.
> To post to this group, send email to beautifulsoup@googlegroups.com.
> To unsubscribe from this group, send email to
> beautifulsoup+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/beautifulsoup?hl=en.
-- Igor Savinkin, +7 929-593-84-67
Skype: igorsavinkin
Moscow, Russian Federation.
In Him.
I have trouble installing bs4 to my Python 2.6.6 installation, does BS4 supports Python 2.6.6? If it does, how do I install it? I appreciate any help, Thanks
On Sunday, July 22, 2012 2:28:12 PM UTC-7, Randy Long wrote:
> Hi all, > I'm trying to use bs4 for some html scraping. I have downloaded and > installed the bs4 directory and opened up a python session, but when I try > to import bs4, python is not finding the module. When I unzipped the bs4 > file, should I place all the .py files in my module directory?
On Mon, Oct 15, 2012 at 8:48 AM, Sammie <kingjym2...@gmail.com> wrote:
> I have trouble installing bs4 to my Python 2.6.6 installation, does BS4
> supports Python 2.6.6? If it does, how do I install it?
> I appreciate any help, Thanks
> -Sammie
> On Sunday, July 22, 2012 2:28:12 PM UTC-7, Randy Long wrote:
>> Hi all,
>> I'm trying to use bs4 for some html scraping. I have downloaded and
>> installed the bs4 directory and opened up a python session, but when I try
>> to import bs4, python is not finding the module. When I unzipped the bs4
>> file, should I place all the .py files in my module directory?
> To post to this group, send email to beautifulsoup@googlegroups.com.
> To unsubscribe from this group, send email to
> beautifulsoup+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/beautifulsoup?hl=en.
> It absolutely supports 2.6.6. What platform are you using? If it's
> Linux, what distro and version?
> -Aaron DeVore
> On Mon, Oct 15, 2012 at 8:48 AM, Sammie <kingjym2...@gmail.com> wrote:
> > I have trouble installing bs4 to my Python 2.6.6 installation, does BS4
> > supports Python 2.6.6? If it does, how do I install it?
> > I appreciate any help, Thanks
> > -Sammie
> > On Sunday, July 22, 2012 2:28:12 PM UTC-7, Randy Long wrote:
> >> Hi all,
> >> I'm trying to use bs4 for some html scraping. I have downloaded and
> >> installed the bs4 directory and opened up a python session, but when I
> try
> >> to import bs4, python is not finding the module. When I unzipped the bs4
> >> file, should I place all the .py files in my module directory?
> > To post to this group, send email to beautifulsoup@googlegroups.com.
> > To unsubscribe from this group, send email to
> > beautifulsoup+unsubscribe@googlegroups.com.
> > For more options, visit this group at
> > http://groups.google.com/group/beautifulsoup?hl=en.
> --
> You received this message because you are subscribed to the Google Groups
> "beautifulsoup" group.
> To post to this group, send email to beautifulsoup@googlegroups.com.
> To unsubscribe from this group, send email to
> beautifulsoup+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/beautifulsoup?hl=en.
-- Igor Savinkin, +7 929-593-84-67
Skype: igorsavinkin
Moscow, Russian Federation.
In Him.
On Mon, Oct 15, 2012 at 10:03 PM, Igor Savinkin <igor.savin...@gmail.com> wrote:
> I work on Debian. But the problem is fixed, thank you.
> On Mon, Oct 15, 2012 at 9:43 PM, Aaron DeVore <aaron.dev...@gmail.com>
> wrote:
>> It absolutely supports 2.6.6. What platform are you using? If it's
>> Linux, what distro and version?
>> -Aaron DeVore
>> On Mon, Oct 15, 2012 at 8:48 AM, Sammie <kingjym2...@gmail.com> wrote:
>> > I have trouble installing bs4 to my Python 2.6.6 installation, does BS4
>> > supports Python 2.6.6? If it does, how do I install it?
>> > I appreciate any help, Thanks
>> > -Sammie
>> > On Sunday, July 22, 2012 2:28:12 PM UTC-7, Randy Long wrote:
>> >> Hi all,
>> >> I'm trying to use bs4 for some html scraping. I have downloaded and
>> >> installed the bs4 directory and opened up a python session, but when I
>> >> try
>> >> to import bs4, python is not finding the module. When I unzipped the
>> >> bs4
>> >> file, should I place all the .py files in my module directory?
>> > To post to this group, send email to beautifulsoup@googlegroups.com.
>> > To unsubscribe from this group, send email to
>> > beautifulsoup+unsubscribe@googlegroups.com.
>> > For more options, visit this group at
>> > http://groups.google.com/group/beautifulsoup?hl=en.
>> --
>> You received this message because you are subscribed to the Google Groups
>> "beautifulsoup" group.
>> To post to this group, send email to beautifulsoup@googlegroups.com.
>> To unsubscribe from this group, send email to
>> beautifulsoup+unsubscribe@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/beautifulsoup?hl=en.
> --
> Igor Savinkin, +7 929-593-84-67
> Skype: igorsavinkin
> Moscow, Russian Federation.
> In Him.
> --
> You received this message because you are subscribed to the Google Groups
> "beautifulsoup" group.
> To post to this group, send email to beautifulsoup@googlegroups.com.
> To unsubscribe from this group, send email to
> beautifulsoup+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/beautifulsoup?hl=en.
> It absolutely supports 2.6.6. What platform are you using? If it's
> Linux, what distro and version?
> -Aaron DeVore
> On Mon, Oct 15, 2012 at 8:48 AM, Sammie <kingjym2...@gmail.com> wrote:
> > I have trouble installing bs4 to my Python 2.6.6 installation, does BS4
> > supports Python 2.6.6? If it does, how do I install it?
> > I appreciate any help, Thanks
> > -Sammie
> > On Sunday, July 22, 2012 2:28:12 PM UTC-7, Randy Long wrote:
> >> Hi all,
> >> I'm trying to use bs4 for some html scraping. I have downloaded and
> >> installed the bs4 directory and opened up a python session, but when I
> try
> >> to import bs4, python is not finding the module. When I unzipped the bs4
> >> file, should I place all the .py files in my module directory?
> > To post to this group, send email to beautifulsoup@googlegroups.com.
> > To unsubscribe from this group, send email to
> > beautifulsoup+unsubscribe@googlegroups.com.
> > For more options, visit this group at
> > http://groups.google.com/group/beautifulsoup?hl=en.
> --
> You received this message because you are subscribed to the Google Groups
> "beautifulsoup" group.
> To post to this group, send email to beautifulsoup@googlegroups.com.
> To unsubscribe from this group, send email to
> beautifulsoup+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/beautifulsoup?hl=en.