Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to install collections in python 3.6 [closed]

Tags:

python-3.x

I'm trying to install a library of collections, a module сounter and defaultdict. I have python 3.6 and Win 7 64x installed. When installing the "pip install collections" library, an error appears. "The version that satisfies the requirement sets could not be found". How to fix this problem?

like image 383
tim_frost Avatar asked Aug 17 '17 14:08

tim_frost


1 Answers

The Collections module is a built-in module and comes with a base installation of Python, both for Python 2 and Python 3, and therefore doesn't need to be installed (and will not be found on PyPI). You can find a list of these modules here

like image 131
Verv Avatar answered Oct 26 '22 03:10

Verv