NanoPlot [] Traceback (most recent call last): File "/usr/local/bin/NanoPlot", line 7, in <module> from nanoplot.NanoPlot import main File "/usr/local/lib/python2.7/dist-packages/nanoplot/NanoPlot.py", line 18, in <module> from nanoget import get_input File "/usr/local/lib/python2.7/dist-packages/nanoget/__init__.py", line 1, in <module> from .nanoget import * File "/usr/local/lib/python2.7/dist-packages/nanoget/nanoget.py", line 29, in <module> import concurrent.futures as cfutures ImportError: No module named concurrent.futures
Answers
0
You should try installing
pip install futures
Futures feature has never included in Python 2.x core. However, it's present in Python 3.x since Python 3.2.
You should try installing
Futures feature has never included in Python 2.x core. However, it's present in Python 3.x since Python 3.2.