How to install vtk for python in windows-10 via pip? - python-3.x

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.

Related

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

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

Could not find a version that satisfies the requirement tensorflow (from versions: none)

When i execute the command in my terminal
pip install --upgrade tensorflow
i get an error
ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow
There was a similiar question in stackoverflow. The cause for this error is that tensorflow supports only up to Python 3.7. So i checked my version
python3 --version3
--> 3.8.1
I tried to downgrade it with
conda install python=3.7
---> Collecting package metadata (current_repodata.json): done
Solving environment: done
# All requested packages already installed.
but it does not work. How can this be?
I am using manjaro as a distro.
Could the Python3.7 you're running be the 32-bit version? Tensorflow requires the 64-bit version of 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