Question : On ubuntu, i'm trying to install python package inside Pipenv environment. But, it is giving this error : ModuleNotFoundError : No module name 'distutils.cmd'
Answer : The issue is resolved by installing distutils manually with 'sudo apt install python3-distutils'. It is working fine below 3.9.9.
Source from :
'Language > Python' 카테고리의 다른 글
[time/timeit] Measure the time efficiency of the code (0) | 2022.10.20 |
---|---|
[requests] Interacting with Web Pages (0) | 2022.10.19 |
[unittest] Unit Testing Our Code (0) | 2022.10.16 |
[Syntax] Special arguments *args and **kwargs (0) | 2022.10.14 |
[Error] Why does substring slicing with index out of range work? (1) | 2022.10.13 |