You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to beautifulsoup
Hello All,
I am trying to install BS4 using Windows PowerShell using the install command pip install beautifulsoup4. However every time I run the command I get the following error message:
>>> pip install beautifulsoup4
File "<stdin>", line 1
pip install beautifulsoup4
^
SyntaxError: invalid syntax
What am I doing wrong?
Thanks in advance!
facelessuser
unread,
Oct 16, 2020, 10:41:59 AM10/16/20
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to beautifulsoup
You need to do this on the command line, not within a Python session.
leonardr
unread,
Oct 16, 2020, 10:42:10 AM10/16/20
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to beautifulsoup
It looks like you're running the pip command from within the Python interpreter. Try running it from the PowerShell command line itself.
I haven't used PowerShell myself, but this similar Stack Overflow question indicates that pip should be accessible from PowerShell if you're using a recent release of Python.
Leonard
hmsdreadnought1875
unread,
Oct 16, 2020, 11:35:50 AM10/16/20
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to beautifulsoup
Thank you both for your assistance. I got it installed!