Although future
is installed, pip is still trying to collect it. This is an offline machine so packages cannot be auto-fetched. Using pip3
instead of python3 -m pip
will give same result.
$ python3 -m pip install ~/future-0.17.1.tar.gz
Processing /home/vader/future-0.17.1.tar.gz
Building wheels for collected packages: future
Running setup.py bdist_wheel for future ... done
Stored in directory: /home/vader/.cache/pip/wheels/c5/09/3a/1433ca68e4b2b77cd517ad0ef03182174a8f2c5fd0a8a89b1f
Successfully built future
Installing collected packages: future
Successfully installed future-0.17.1
$ python3 -m pip install ~/ffmpeg-python-0.1.18.tar.gz
Processing /home/vader/ffmpeg-python-0.1.18.tar.gz
Collecting future (from ffmpeg-python==0.1.18)
Retrying...NewConnectionError...Failed to establish a new connection
How can I resolve?