Wrote some code using python and tensorflow, and got an error

ImportError: No module named 'stringprep' 

which occurs in the Tensorflow code, I did not find on the Internet what method can be used to connect a module that is not installed, maybe someone has encountered a similar problem.

Python v3.5 Tensorflow v1.13.1

  • `what method can I connect a module that is not installed`? And if you do this with pip install stringprep ? - gil9red
  • @gil9red not working - couldn’t find a version that satisfies the requirementspresent stringprep (from the versions:) No matching distribution found for stringprep - Petro Chaikivskyi
  • It turns out that stringprep is out of the box: docs.python.org/3.7/library/stringprep.html Another question is why you don’t have ... - gil9red
  • @Petrochaykivsky, how did you install Tensorflow? I would try to install Tensorflow using “conda” from the Anaconda distribution - MaxU
  • one
    @PetroChayksky, can you give the whole question on the error traceback? - MaxU

0