Last active
July 4, 2024 03:09
-
-
Save kenzo0107/f204c7af2b764d15a6c6 to your computer and use it in GitHub Desktop.
This file contains 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
sudo yum -y install gcc gcc-c++ kernel-devel | |
sudo yum -y install python-devel libxslt-devel libffi-devel openssl-devel | |
pip install cryptography |
sudo: yum: command not found.
Help to fix this error, please
install yum
$ sudo apt install yum
Is there any way to install these packages without the root permissions?
I am trying to install them on shared hosting with only basic user permissions.
A non-trivial solution:
yum install openssl-devel bzip2-devel libffi-devel sqlite-devel
yum groupinstall "Development Tools"
Then re-build your Python. It will make Python equipped with these build utilities (gcc, g++ etc.):
cd your/downloaded/python/directory
./configure --enable-optimizations
make altinstall
If you are using venv
, you have to create the venv
again under this corrected python installation.
Thanks. It works.
It worked, thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
sudo: yum: command not found.
Help to fix this error, please