No matching distribution found for intel-numpy - python-3.x

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.

Related

IfxPy installation fails

I have the same problem.
C:>pip install IfxPy ERROR: Could not find a version that satisfies the requirement IfxPy (from versions: none) ERROR: No matching distribution found for IfxPy
It was working on Python2.7 but now I have Python3.8.6 installed and I can't use IfxPy. I tried to install using pip and directly with "python setup.py install" on the zip file without success. Can you help me?
C:>python -V Python 3.8.6
C:>pip -V pip 20.2.3 from c:\python 3.8\lib\site-packages\pip (python 3.8)
C:>pip3 -V pip 20.2.3 from c:\python 3.8\lib\site-packages\pip (python 3.8)
C:>set PATH Path=C:\Python 3.8\Scripts;C:\Python 3.8;C:\Python27;C:\Python27\Scripts;C:\Program Files\ibm\gsk8\lib64;C:\Program Files\ibm\gsk8\bin;C:\Program Files\Informix Client-SDK;C:\ProgramData\Oracle\Java\javapath;C:\Oracle806\bin;C:\Progra~1\Oracle\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0;C:\Python27;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0;C:\WINDOWS\SysWOW64;C:\Users\p054007\AppData\Local\Programs\Python\Python38-32\Scripts;C:\Users\p054007\AppData\Local\Programs\Python\Python38-32;C:\Oracle806\bin;C:\Progra~1\Oracle\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0;C:\Python27;C:\Users\p054007\AppData\Local\Microsoft\WindowsApps;C:\Python27\Scripts;C:\Users\p054007\AppData\Local\Microsoft\WindowsApps;
set PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.PY;.PYW
The latest release of IfxPy (currently 3.0.3 provides only wheels for 64-bit Python 3.7 for Windows and 64-bit Python 3.8 for Linux.
Install it with 64-bit Python 3.7 for Windows. Or compile from sources.

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 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.

installing torch 1.0.1.post2 in windows system

Not Able to install latest version of Torch (pip install torch==1.0.1.post2)
pip install torch==1.0.1.post2
Trying to do in Python Version 3.7 and windows 10
C:\Users\Admin>pip install torch==1.0.1.post2
Collecting torch==1.0.1.post2
Could not find a version that satisfies the requirement torch==1.0.1.post2 (from versions: 0.1.2, 0.1.2.post1)
No matching distribution found for torch==1.0.1.post2
torch 1.0.1.post2 is not available on Windows. You can get a list of all available torch pypi packages from https://download.pytorch.org/whl/cpu/stable

Issues while installing tensorflow for Python 3.7 in Mac

I am using macOS Sierra(on GPU support) with python3.7.0 installed.
Whenever I am trying to install tensorflow with the following command,
pip3 install tensorflow
I am getting the following issues:
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow.
Any help or suggestions are welcome.
Tensorflow does not support Python 3.7 yet. Use Python 3.6. See https://github.com/tensorflow/tensorflow/issues/17022.

Resources