pocketsphinx not getting installed in python 3.6 - python-3.x

I am trying to install pocketsphinx package ***dependent package of textract*** on windows. I'm getting the the following error
'Failed to build wheel for pocketsphinx'
Has anyone come across this error. Help is appreciated.
Thanks

I could resolve this by downgrading python 3.6 to 3.5.

Related

Error installing eth-brownie with pipx: "No Python at: <Location of Old Python Installation>"

I'm trying to install eth-brownie. Followed the Brownie documentation and installed pipx, then ran pipx ensurepath. I was originally using Python 3.10 but couldn't install it, found that this was pretty common and the best fix was to downgrade to 3.9.
After uninstalling 3.10 and installing 3.9, I ran everything again. When I run pipx install eth-brownie, I get the following error:
C:\Users\garri>pipx install eth-brownie
No Python at 'C:\Users\garri\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\python.exe'
Fatal error from pip prevented installation. Full pip output in file:
C:\Users\garri\.local\pipx\logs\cmd_2022-03-28_13.40.53_pip_errors.log
Error installing eth-brownie.
I removed Python 3.10 from Path and python --version returns 3.9.12 as expected. I'm at a loss, as I feel like I've tried everything. Any help would be greatly appreciated.
This is basically a pipx cache issue. You have to delete the following folder to remove pipx related cached files.
C:\Users\<username>\.local\pipx

Unable to run Rasa

I have been trying to install and use Rasa for one of my Assignment for 2 days. I have tried everything. I have tried using it with python 3.9, python 3.7.x and currently I have installed python 3.6.8 for which the error message is shown below. I have tried to find the solution via github discuss sections, but nothing has helped me yet. Can anyone tell me how can I resolve this?
Installed versions:
Rasa Version Installed: 2.3
Python version 3.6.8
Pip version 18.1
tensorflow version 2.3.1
The install steps can be found here along with the supported Python versions. 3.9 is not supported.
This is a TensorFlow loading issue which is probably related to your system configuration. There is more information here
I faced this problem and solved it by installing tensorflow using conda.
Another way can be using virtual environment.

How to fix ERROR: Command errored out with exit status 1: while installing pygame?

Screenshot of the error
I was trying to install pygame but I had gotten an error. I found out some people had the same problem with me but I could not find a way to solve it. I would be grateful if anyone could give an explanation on how to solve it. (I am quite new to python coding)
You are trying to install the latest version of pygame with a non-compatible version of python. Your current python version is 3.9, try installing an earlier version of python and a compatible version of pygame:
pip install python==3.8.3
pip install pygame==2.0.0.dev6
Should work.

Error installing "Statsmodels"

I am not able to install "statsmodels" package through Pycharm. I tried command line installation as well, which still did not work. I am using Python 3.X version. Please could you help. I need the package direly. Sharing the installation error as well.
Thnx in adv.

Trouble installing python 3.6.1

I am having trouble while installing python 3.6.1, it shows an error like this,please help
0*80240017-unspecified error
This error has to do with having to install the C runtime for Windows for Python to work.
Run this first and then reinstall:
https://support.microsoft.com/en-us/help/2999226/update-for-universal-c-runtime-in-windows

Resources