Answer marked below. It was two problems. I was missing a semicolon in the env var path, and the latest Beautiful Soup is incompatible with my python script. Using an older version allowed it to run.
I'm trying to install Beautiful Soup in Windows using "Setup.py Install" from a CMD window.
I get the below error...
Z:\Installers\beautifulsoup4-4.1.0>setup.py install
usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: setup.py --help [cmd1 cmd2 ...]
or: setup.py --help-commands
or: setup.py cmd --help
error: no commands supplied
Z:\Installers\beautifulsoup4-4.1.0>
I have seen this post and this post, however, running the command above does attempt the install, leading me to believe python is at least partially set up correctly in environment variables. The 'python' command itself in a cmd is "not recognised" and neither is "easy_install". Making me think something is wrong somewhere. I have set these both as... C:\Python27\C:\Python27\Scripts
Does anyone know what might be causing my Beautiful Soup install to fail using easy_install or Setup.py?
Edit: C:\Path\To\Python27\python "C:\Path\To\BeautifulSoup\setup.py" install
worked. So I'm not sure what is wrong with my path variable.
Edit 2: While the install appeared to work I'm still being told beautiful soup is not installed. Import Error: No module named BeautifulSoup
.