Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
When i try to install Mysqlclient through pip i get this error:
fatal error C1083: Cannot open include file: 'my_config.h': No such file or directory
How do i fix it? Python 3.4(x64), Win7.
You got this error because you don't have the right mysql server for development (some files miss).
Download and install the MySQL Community Server 5.5
Then retry to install Mysqlclient package
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 11 months ago.
Improve this question
I'm trying to install pycrypto package, but I got still getting an error i don't know why ?
i have python 3.9, is there any alternatives ?
As you can see bellow, this is the error that I got :
Collecting pycrypto Using cached https://files.pythonhosted.org/packages/60/db/645aa9af249f059cc3a368b118de33889219e0362141e75d4eaf6f80f163/pycrypto-2.6.1.tar.gz
Installing collected packages: pycrypto
Running setup.py install for pycrypto ... error
Thank you
pycrypto doesn't work with python3, you can use instead pycryptodome :
pip install pycryptodome
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
I tried installing pyaudio from various source such as pip, conda, whl file, unofficial python, pyaudio.exe but none of them worked.
When I write:
conda install pyaudio
it says All requested packages already installed.
I went to lib of anaconda and there I found pyaudio.py but then also I cannot import it in my program.
Please install pyaudio using pipwin.
pip install pipwin
pipwin install pyaudio
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 months ago.
Improve this question
I installed Camelot module for python 3.7 on computer without internet connection, installed dependencies (tkinter & ghostscript).
When I try "import camelot" in jupyter notebook I get error "no module named cv2".
I can't find cv2 module link to download it separately.
How can I solve this problem?
This got rid of the error for me.
pip install camelot-py[cv]
I'm using a Mac with Apple Silicon and the camelot-py[cv] method didn't work. I installed opencv separately and everything has been working fine so far.
pip install opencv-python
install comelot-py
python -m pip install camelot-py
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
I use windows 8.1 and I tried to install hdbscan package command line : pip install hdbscan, the installation starts first normally but after I have got this msg error
any idea about how to fix it, please?
you should download and install visual studio c++ 14.0
https://visualstudio.microsoft.com/downloads/
pip install hdbscan
My execution
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I am trying to use a python module for using Mega and it requires me to have pycrypto installed. I tried using both pip and easy_install to install it but I have had no luck. With pip I am getting an error like this post. I followed the link from the answer in that post, but I really have no idea where to go from there. I am using Windows 7.
Pycripto is C-based extension. You can compile PyCrypto on Windows, here is a step-by-step guide.
Alternatively, you can install compiled binaries.
Here is extensive source of compiled python packages for Windows:
Unofficial Windows Binaries for Python Extension Packages