Jan 23, 2021 · nullpunktTUD commented on Jan 23, 2021. Trying to run docker-compose -f docker-compose.yml build I am getting the following error: AttributeError: module 'platform' has no attribute 'linux_distribution'. According to some googling, this is because the function linux_distribution () was removed in Python 3.8.
Nov 08, 2019 · No problem so far. But when I want to install new packages via pip: python3.8 -m pip install pylint It throws an error: AttributeError: module 'platform' has no attribute 'linux_distribution' So far, I tried: sudo update-alternatives --config python3 and chose python3.8 and run command by starting with python3 but no luck. Then:
25.01.2017 · I recently upgraded to docker version 1.13 and docker-compose 1.10.0. When using a docker compose file (both version 2 or version 3), the commands docker-compose up docker-compose pull <service_name> I get the following error: $ docker-c...
MichaelKittlitz commented on Apr 11. Have had the same issue. Solution: apt install docker.io. after that docker-compose up works nicely. saghul closed this on Apr 11. Sign up for free to join this conversation on GitHub .
Dec 05, 2019 · I'm pretty sure this is because ```AttributeError: module 'platform' has no attribute 'linux_distribution' Is there any expected support date for python3.8? Wanted to let y'all know it's an issue!
Nov 07, 2021 · Solution. My solution was to first edit the source code to remove the line that adds "TF" in front of the package as the correct transformers module is GPTNeoForCausalLM , but somewhere in the source code it manually added a "TF" in front of it. Secondly, before cloning the repository it is a must to run. git lfs install.
23.01.2021 · Trying to run docker-compose -f docker-compose.yml build I am getting the following error: AttributeError: module 'platform' has no attribute 'linux_distribution' According to some googling, this is because the function linux_distributio...
07.11.2019 · I had Python versions of 2.7 and 3.5. I wanted the install a newer version of Python which is python 3.8. I am using Ubuntu 16.04 and I can not just uninstall Python 3.5 due to the dependencies. So...
May 28, 2021 · When running ceph-deploy on Python 3.8, you may encounter the following error: [ceph_deploy] [ERROR ] RuntimeError: AttributeError: module 'platform' has no attribute 'linux_distribution'. Enter fullscreen mode. Exit fullscreen mode. This is because of the deprecated platform.linux_distribution function in Python3.8.
attributeerror module 'platform' has no attribute 'linux_distribution' ubuntu 20.04 docker-compose; Failed to find 'typescript' module. Please check, NODE_PATH contains location of global 'typescript' or install locally in your project; TypeError: Cannot read property 'R' of undefined snackbar.android.js:160:0
I am using Ubuntu 16.04 and I can not just uninstall Python 3.5 due to the ... AttributeError: module 'platform' has no attribute 'linux_distribution'.
I finally fixed it, I don’t know what worked 😉 I just nuked things with fire and things went back to normal. The nuke launch codes that I used are: docker stop $(docker ps -a -q) # stop all docker containers docker rm -f $(docker ps -a -q) # remove all docker containers docker images -q | xargs docker rmi -f # remove all docker images sudo pip uninstall docker-compose # uninstall …