This is all very new to me, so I am at a loss what further I can do...
(I am following the instructions from Head First Python ed2 pages 533 etc)
Trying to install 'vsearch.zip' (zipped via Windows10) following the instructions in the book.:
python3 -m pip install vsearch.zip --user
The result of this is:
Processing ./vsearch.zip
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/usr/lib/python3.6/tokenize.py", line 452, in open
buffer = _builtin_open(filename, 'rb')
FileNotFoundError: [Errno 2] No such file or directory: '/tmp/pip-0v61tdy0-build/setup.py'
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-0v61tdy0-build/
I get a similar result with:
pip3.6 install --user vsearch.zip
(from the PythonAnywhere fourms)
I have also tried:
- zipping in different formats (7z, gz, 7zip zip)
- upgrading according to https://stackoverflow.com/questions/35991403/pip-install-unroll-python-setup-py-egg-info-failed-with-error-code-1 instructions
- running the install on the unzipped (vsearch.py) file
Anything I have overlooked? Would appreciate it if someone could ELI5 what is going on and how I can progress.