Unable to install Rasa and use it on PyCharm - python-3.x

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.

Related

How to install libdoc2testbench on Ubuntu

libdoc2testbench is a tool of Robot Framework which supports importing test results to imbus testbench. Due to Robot Framework documentation, it is to be installed by
pip install robotframework-libdoc2testbench
I want to install it on Ubuntu 18.04; there I get the error:
Could not find a version that satisfies the requirement robotframework-libdoc2testbench (from versions: )
No matching distribution found for robotframework-libdoc2testbench
Best regards
Gerhard
You are probably calling pip from Python 2.7.
Make sure you use Python 3, for example with:
python3 -m pip install robotframework-libdoc2testbench
EDIT: You can download the .wheel or source tar from pypi.org and install with pip pointing to it (and then if needed, download other required packages).
However the solution to your problem is the Python version. From the project page, we see it needs Python 3.7.

No matching distribution found for pptk in anaconda

I am trying to install pptk in an anaconda environment by
pip install pptk
But everytime it returns the same error
ERROR: Could not find a version that satisfies the requirement pptk (from versions: none)
ERROR: No matching distribution found for pptk
I tried installing from the .whl file that results from building pptk from source following this instruction, but in this case I am stuck with
cmake -G "NMake Makefiles" <build folder>
The cmake error is as following
CMake Error: Could not create named generator NMake Makefiles
Although I was not succeeded in installing in any of the created anaconda environment, I was able to install pptk in the base. Would be much of help to know what else i can try to install pptk in anaconda environments.
I am using python 3.8, Ubuntu 20.04, and anaconda 3
Thanks in advance!
This is because pptk has not released a version that is compatible for python 3.8, it can currently only support python 3.7
pptk has not released a version for python 3.8 yet, you will have to use python 3.7 or wait

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 vtk for python in windows-10 via pip?

I tried installing vtk via pip as "pip install vtk" but it returned an error as below.
ERROR:
Could not find a version that satisfies the requirement vtk (from
versions: none)
ERROR:
No matching distribution found for vtk"
How do I solve it?
vtk 8.1.2 provides only 64-bit releases and no source code. Your Python is 32-bit. To install vtk you need to upgrade to 64-bit Python.

No matching distribution found for intel-numpy

I'm trying to install Intel's numpy version through pip on Windows as described on their website.
> python -m pip install intel-numpy
Collecting intel-numpy
Could not find a version that satisfies the requirement intel-numpy (from versions: )
No matching distribution found for intel-numpy
I have 64-bit Python on Windows 10 and the main numpy package isn't installed. What am I doing wrong?
The problem was my version of Python: intel-numpy is currently packaged for Python 3.6 and not 3.7. Installing Python 3.6 fixed it.

Resources