I am a hardcore newb when it comes to computers, but I am doing my best to learn Python. Namely, I'm taking an online Crypto course, and I'm trying to do an assignment which requires PyCrypto. I'm using the 32-bit version of Python 3.5.
I downloaded and extracted the PyCrypto file (2.6.1 if I'm not mistaken) to a folder, and then I double-clicked "setup.py" in the "dist" file. Once I executed the file, it transfers to another code called "core.py" and shows the following error message:
Traceback (most recent call last):
File "C:\Users\Neil\Python\dist\pycrypto-2.6\setup.py", line 456, in <module>
core.setup(**kw)
File "C:\Users\Neil\AppData\Local\Programs\Python\Python35-32\Lib\distutils\core.py", line 136, in setup
raise SystemExit(gen_usage(dist.script_name) + "\nerror: %s" % msg)
builtins.SystemExit: usage: _sandbox.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: _sandbox.py --help [cmd1 cmd2 ...]
or: _sandbox.py --help-commands
or: _sandbox.py cmd --help
error: no commands supplied
I have no idea what is going on, and I'm hoping someone can explain very simply what I should do to get this to work properly. I'm sorry for being that one annoying person!