I am trying to install ERPnext on my cpanel.
But I am getting Missing Dependency: libmysqlclient_r.so.15()(64bit) this message from the script.
I have googled it but no helpful material was found .
As far as I knows from my research I have to install mysql-devel on my server but when I tryed to install it. I gets a message that it is already installed on the server.
Any idea how can I get it resolved or what should I do
Image of my terminal
I got this error resolved by changing in yum.config file of etc directory.
We have to remove mysql from exclude-list.
Look for more info i the Cpanel mysql python forum.
Related
This is the error I am receiving:
RuntimeError: The 'apxs' command appears not to be installed or is not executable. Please check the list of prerequisites in the documentation for this package and install any missing Apache httpd server packages.
How can I get around this? I have received this while trying to install different packages. I am working on a Django project. I have already made sure the apache2-dev package is installed. I am developing on linux.
What I am doing.
I am working on a very basic django project.
what is my problem.
When I am loading my webpage (locally) it is showing following error on webpage.
A server error occurred. Please contact the administrator
and error that I saw on terminal is
zoneinfo._common.ZoneInfoNotFoundError: 'No time zone found with key utc'
Running the command below in the terminal should fix the issue:
pip3 install tzdata
or
pip install tzdata
I am trying to install mysqlclient in a offline CentOS7 server, so that I can connect my Django site to a MariaDB
What I did was to download .wheel package "mysqlclient-2.0.3-cp37-cp37m-win_amd64.whl" from PyPI.
Then I run the code
pip install mysqlclient-2.0.3-cp37-cp37m-win_amd64.whl
But received the following message
mysqlclient-2.0.3-cp37-cp37m-win_amd64.whl is not a supported wheel on this platform.
[error message][1]
[1]: https://i.stack.imgur.com/bhqUD.png
I looked through all available answers and internet questions but did not able to find a similar problem. Could someone give me help?
Thank you very much
After following #Brain comment, I have solved the problem.
I went to PyPI and downloaded the .tar.gz file;
Uploaded the file to the offline server. Unzipped the file and followed the INSTALL.rst
Although building from the .tar.gz source code required some more efforts. Thanks
When trying to install any packages on my computer using "pip install" i get returned the error
ERROR: Could not install packages due to an EnvironmentError: Please check proxy URL. It is malformed and could be missing the host.
i came across this when trying to run "pip install captcha-harvester" or any other similar command
there have been other posts on stack overflow where they suggested to use the command shown below
set http_proxy=http://[username:password#]proxyserver:port
when using the commands the error continues so any help with my problem would be greatly appreciated.
The error i receive
I get this error trying to install mysqldb with pip. I got a response that I damaged the python files and should remove and re-install python on a different website. So I removed python via the control panel and downloaded it again. I'm not sure if it's enough or is it the right way to go but the issue still remains.
By the way, I installed python in a different folder before and then changed it manually by moving the files by dragging them, could that be the reason the files are damaged.
From the error that you receive seems that you have connection error and for that reason you cannot fetch the repository. Try to install ssl module with pip install ssl. Because if you look the first warning you can see this pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.