Last active
March 29, 2022 09:57
-
-
Save pistocop/fd7951b085df5fdb7fb06a9760c08f7b to your computer and use it in GitHub Desktop.
debian python dependencies installation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Code from: | |
# https://www.codegrepper.com/code-examples/whatever/python+++++ModuleNotFoundError%3A+No+module+named+%27_ctypes%27 | |
sudo apt-get update | |
sudo apt-get upgrade | |
sudo apt-get dist-upgrade | |
sudo apt-get install build-essential python3-dev python3-setuptools python3-pip python3-smbus | |
sudo apt-get install libncursesw5-dev libgdbm-dev libc6-dev | |
sudo apt-get install zlib1g-dev libsqlite3-dev tk-dev | |
sudo apt-get install libssl-dev openssl | |
sudo apt-get install libffi-dev |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment