I am trying to install a python module manually without pip
or easy_install
in Python 3. At first I tried (after cd
to the folder containing the setup.py
file):
python setup.py install
However, I recieved an error:
'python' is not recognized as an internal or external command, operable program or batch file.
After a little research, I realised that without the python
it should work:
setup.py install
This also gave me an error:
error: no command supplied
More researching told me to go back to python setup.py install
(which doesn't work), and following these instructions and following links hasn't worked either.
I would appreciate any help in installing this module (the module being BeautifulSoup4
).