cannot install Azure-cognitiveservices-speech on Ubuntu 18.04 - azure

good evening.
I try to install Azure-cognitiveservices-speech on Ubuntu Mate 18.04, but I receive error:
Could not find a version that satisfies the requirement azure->cognitiveservices-speech (from versions: ) No matching distribution found for >azure-cognitiveservices-speech
I have Ubuntu MATE 18.04 64bit on Raspberry 3B+ with installed
libssl1.0.0
libasound2
Do you have any suggestion for me?
thank you for your support.

For this issue, the mostly reason is you are not using the workable version of Pyhton.
azure-cognitiveservices-speech version 1.2.0 works only for Python 3.5, 3.6 and 3.7.And you should be under the system including MacOS, Linux and Windows, 64 bits.
Please check your version and make sure you are under 64 bits.
Try:
python -c "import struct; print(struct.calcsize('P') * 8)"

Related

GLIBC_2.29' not found

enter image description here
ImportError: /lib/arm-linux-gnueabihf/libc.so.6: version `GLIBC_2.29' not found (required by /usr/local/lib/python3.7/dist-packages/grpc/_cython/cygrpc.cpython-37m-arm-linux-gnueabihf.so)
Hei
I am on a Rasberry pi 4B / 8 GB, Raspberry OS / Buster, using debian 10.
i'm currently using python 3.10.4 as a standard version
i have installed
pip install grpcio==1.44.0 --no-binary=grpcio
pip install grpcio-tools==1.44.0 --no-binary=grpcio-tools
but it didn't do anything at all
anyone who can help?
Raspberry OS is using musllibc, while most other Linux distros are using glibc. This means the binary wheels gRPC team uploaded to PyPI won't work out-of-box for Raspberry Pi. I would recommend to download the wheels from piwheels: https://www.piwheels.org/project/grpcio/

How to install turicreate on windows 7?

Can anyone tell me how to install turicreate on windows 7? I am using python of version 3.7. I have tried using pip install -U turicreate to install but failed.
Thanks in advance
I am quoting from Turicreate website:
Turi Create supports:
macOS 10.12+
Linux (with glibc 2.12+)
Windows 10 (via WSL)
System Requirements
Python 2.7, 3.5, or 3.6
Python 3.7 macOS only
x86_64 architecture
So Windows 7 is not supported in this case.

Unable to install Rasa and use it on PyCharm

Could not find a version that satisfies the requirement tensorflow-addons<0.9,>=0.8 (from rasa) (from versions: )
No matching distribution found for tensorflow-addons<0.9,>=0.8 (from rasa)
I keep on getting this error while performing
pip3 install rasa
I've tried it with Python 3.8,3.7 and 3.6.
Any suggestions on what to do?
I suspect all your Pythons are 32-bit. TensorFlow and addons require 64-bit Python.
Check bitness of your Pythons:
python -c "import struct; print(struct.calcsize('P') * 8)"
If they're really 32-bit uninstall them all and install 64-bit Python.

Could not find a version that satisfies the requirement MetaTrader5

I am trying to install a python package MetaTrader5 using the command
python3 -m pip install MetaTrader5
and I have even tried
pip install MetaTrader5
But it throws the following error
ERROR: Could not find a version that satisfies the requirement MetaTrader5 (from versions: none)
ERROR: No matching distribution found for MetaTrader5
I am using
Ubuntu 16.04.6
Python 3.6.10
can someone help with this?
I have a mac. On it I have conda installed on MacOS. In addition I have a virtual machine running windows and I have also installed conda on Windows. I could install MetaTrader5 package using pip on the virtual machine but not on MacOS.
According to this Youtube video, MetaTrader5 currently doesn't support Ubuntu. It's only available on Windows.
If you look at Pypy and view the wheel files, you will see that all the builds are for Windows. pip is refusing to install because it can't find a Mac or Linux version.
https://pypi.org/project/MetaTrader5/5.0.37/#files
Download python version 3.10.0 then try installing metatrader5.
here the link: https://www.python.org/downloads/release/python-3100/
Metatrader 5 for Python, only work in exact versions:
Install one of version below to MT5 works.
Python Versions for Metatrader5

easy_install install on Windows 7 32 bit

Trying to find out how to install or find easy_install on my Windows 7 32bit machine with Python 3.2.3 installed.
On a different machine with Windows 7 64 bit Python 3.2.3, easy_install was installed automatically into c:\python32\Scripts.
I found some instructions on how to install easy_install here, which led me to this page which tells me that to install easy_install, I need to install setuptools with the provided .exe (couldn't find). Also, I'm left to wonder what setuptools has to do with easy_install?
Thanks for any help!
easy_install is included with distribute. The simplest way to install it on Windows is from this page:
http://www.lfd.uci.edu/~gohlke/pythonlibs/#distribute

Resources