How to install turicreate on windows 7? - python-3.x

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.

Related

TA-Lib Windows 10 install

I am trying to install TA-Lib locally on my Windows 10 machine and keep receiving the following error:
ERROR: TA_Lib-0.4.18-cp38-cp38-win_amd64.whl is not a supported wheel on >this platform.
I am running Python 3.8, and Windows 10 is 64 bit. I have tried upgrading pip, but this does not seem to help.
TA-Lib is a C-library with python wrapper. Firstly, install the C library binary, then install python wrapper. Check out Dependencies section at https://mrjbq7.github.io/ta-lib/install.html

cannot install Azure-cognitiveservices-speech on Ubuntu 18.04

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)"

Python: Unable to install hdbcli library on Python 3.8 installation

Unable to install hdbcli library on Python 3.8 Windows installation.
Python version is 64-bit to be compatible with the wheel.
The "win32" in the Python console header only indicates that it is a Windows system. Actual Windows architecture is 64-bit as seen in systeminfo output.
I've tried installing:
via the wheel (link below)
via pip (pip install hdbcli)
a previous version of the library (pip install hdbcli==2.4.171)
None of which were successful.
I feel there is something obvious I'm missing
Error information:
ERROR: Could not find a version that satisfies the requirement hdbcli
(from versions: none)
ERROR: No matching distribution found for
hdbcli
Python information
version: 3.8.2
pip version: 20.0.2
Python console header: Python 3.8.2 (tags/v3.8.2:7b3ab59, Feb 25 2020, 23:03:10) [MSC v.1916 64 bit (AMD64)] on win32
System information
As from systeminfo:
OS Name: Microsoft Windows 10 Enterprise
OS Version: 10.0.18362 N/A Build 18362
System Type: x64-based PC
hdbcli information
hdbcli-2.4.182-cp38-cp38m-win_amd64.whl
Try to rename the file from hdbcli-2.4.182-cp38-cp38m-win_amd64.whl to hdbcli-2.4.182-cp38-cp38-win_amd64.whl and install once again with pip install hdbcli-2.4.182-cp38-cp38-win_amd64.whl
hdbcli wheels (prior to version 2.4.191) were built with old versions of pip/setuptools/wheel that use different ABI tags for Python 3.8 on Windows.
If you can't update to 2.4.191 or rename the wheel, you can work around this issue if needed by downgrading to pip 19.2.2 or lower.
These packages expect the updated 'cp38' format (only available with hdbcli 2.4.191 and later) :
setuptools >= 42.0.0
wheel >= 0.33.5
pip >= 19.2.3
In my case hbcli was not compatible with python3 beacuse I wasn't able to install hdbcli library with python 3.10. However it is compatible with python 2.7 so go ahead and install latest version of python 2.7 and see if it works
I had the same issue.
What worked for me was installing an older version of Python, namely 3.6.15 and setting it up for the project (i.e. added it as project interpreter in Pycharm).
Then, I could successfully install hdbcli.

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

How to install python3.5 or 3.6 in linux that has python 3.4

I want to install python 3.5 in linux that has python 3.4
via virtualenv or any other mean.
since the system version is 3.4 ,I don't want to upgrade it so the system don't crash .
Using sudo apt-get install package python3 should install the latest version of Python, and remove the older one.

Resources